:root {
    --primary: #1d62f0;
    --secondary: #ff007a;
    --text-light: #707070;
    --text-dark: #111;
    --white-60: rgba(255 255 255 / 60%);
    --heading-light: #666;
    --white: #fff;
    --black: #000;
    --transition: .3s all ease;
}

/* global styling starts here */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.text-light {
    color: var(--text-light);
}

.text-dark {
    color: var(--text-dark);
}

.heading-light {
    color: var(--heading-light);
}

.white-60 {
    color: var(--white-60);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1 {
    font-size: 64px;
    line-height: 1.2em;
    font-weight: 400;
    color: var(--white);
    letter-spacing: -3.8px;
}

.home-banner-heading {
    line-height: 1.2em;
}

h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 54px;
    line-height: 1.2em;
    font-weight: 400;
    color: var(--black);
}

h3 {
    font-size: 34px;
    line-height: 1.2em;
    font-weight: 500;
    color: var(--white);
}

h4 {
    font-size: 30px;
    line-height: 1.2em;
    font-weight: 600;
    color: var(--white);
}

h5 {
    font-size: 18px;
    line-height: 1.2em;
    font-weight: 500;
    color: var(--white);
}

h6 {
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 700;
    color: var(--text-dark);
}

p,
li {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--text-light);
}

a {
    font-size: 16px;
    line-height: 1.6em;
    font-weight: 400;
    color: var(--text-dark);
    display: inline-block;
    transition: var(--transition);
    text-decoration: none;
    text-transform: capitalize;
    cursor: pointer;
}

a:hover {
    color: var(--primary);
}

.btn {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    border-radius: 10px;
    text-align: center;
    padding: 12px 18px;
    display: inline-block;
    transition: var(--transition);
    height: 46px;
}

.btn:hover {
    color: var(--white);
}

.btn-primary {
    position: relative;
    font-weight: 600;
    border-radius: 12px;
    padding: 12px 18px;
    height: 46px;
    display: inline-block;
    text-align: center;
    border: none;
    background: var(--white);
    transition: all 0.4s ease;
    box-shadow: 0 -4px 15px 0 rgba(0, 85, 254, 0.48),
        0 4px 15.6px 0 rgba(223, 49, 112, 0.40);
    transition: var(--transition);
}

.btn-primary span {
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    transition: color 0.4s ease, background 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(143deg, var(--primary), var(--secondary));
    -webkit-mask:
        linear-gradient(var(--white) 0 0) content-box,
        linear-gradient(var(--white) 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(143deg, var(--primary), var(--secondary));
    opacity: 0;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:hover span {
    color: var(--white);
}

.btn-primary span img {
    transition: var(--transition);
}

.btn-primary:hover span img {
    filter: invert(1) brightness(240);
}

.btn-secondary {
    position: relative;
    font-weight: 600;
    border-radius: 12px;
    padding: 12px 18px;
    height: 46px;
    display: inline-block;
    text-align: center;
    color: var(--white);
    border: none;
    background: transparent;
    transition: var(--transition);
    box-shadow: 0 -4px 15px 0 rgba(0, 85, 254, 0.48), 0 4px 15.6px 0 rgba(223, 49, 112, 0.40);
}

.btn-secondary::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(143deg, var(--primary), var(--secondary));
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.btn-secondary::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(143deg, var(--primary), var(--secondary));
    -webkit-mask:
        linear-gradient(var(--white) 0 0) content-box,
        linear-gradient(var(--white) 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.btn-secondary span {
    position: relative;
    z-index: 1;
    display: inline-block;
    color: var(--white);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:hover span {
    color: var(--white);
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 8px;
}

.loader-wrapper {
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    position: fixed;
    background-color: rgb(0 0 0 / 50%);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    display: none;
}

.loader {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--primary);
    --_m:
        conic-gradient(#0000 10%, #9FC23F),
        linear-gradient(#9FC23F 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1400px;
    }
}

.gap-12 {
    gap: 12px;
}

.gap-40 {
    gap: 40px;
}

.border-style {
    position: relative;
    border-radius: 8px;
    background: var(--white);
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: fit-content;
}

.border-style::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(143deg, var(--primary), var(--secondary));
    -webkit-mask:
        linear-gradient(var(--white) 0 0) content-box,
        linear-gradient(var(--white) 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.section-tile {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #1A1114;
    color: var(--white);
}

.section-tile .number {
    background-color: var(--black);
    padding: 6px 10px;
    border-radius: 6px;
    color: var(--white);
    box-shadow: 0 -4px 15px 0 rgba(0, 85, 254, 0.28), 0 4px 15.6px 0 rgba(223, 49, 112, 0.30);
    font-size: 12px;
    font-weight: 700;
}

.section-tile .text {
    padding-right: 12px;
}

.shimmer {
    background: linear-gradient(90deg, #0080FF, #ED6E6E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    font-weight: 500;
    padding-right: 4px;
}

/* .shimmer {
    text-align: center;
    color: rgba(255, 255, 255, 0.1);
    background: -webkit-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
    background: -moz-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
    background: gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
    -webkit-background-size: 125px 100%;
    -moz-background-size: 125px 100%;
    background-size: 125px 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-animation-name: shimmer;
    -moz-animation-name: shimmer;
    animation-name: shimmer;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-color: #222;
}

@-moz-keyframes shimmer {
    0% {
        background-position: top left;
    }

    100% {
        background-position: top right;
    }
}

@-webkit-keyframes shimmer {
    0% {
        background-position: top left;
    }

    100% {
        background-position: top right;
    }
}

@-o-keyframes shimmer {
    0% {
        background-position: top left;
    }

    100% {
        background-position: top right;
    }
}

@keyframes shimmer {
    0% {
        background-position: top left;
    }

    100% {
        background-position: top right;
    }
} */

.section-description {
    color: var(--text-dark);
    font-size: 14px;
    position: relative;
    padding-left: 16px;
    display: block;
    text-transform: capitalize;
}

.section-description::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.section-description::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 1px;
    background-color: rgb(17 17 17 / 30%);
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.section-description-border {
    color: #bbb;
    font-size: 14px;
    position: relative;
    text-transform: uppercase;
    border: 1px solid var(--primary);
    border-radius: 50px;
    padding: 6px 10px 6px 28px;
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    background-color: var(--black);
}

.section-description-border::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    top: 50%;
    transform: translateY(-50%);
    left: 12px;
}

.icon-box {
    border: 1px solid var(--secondary);
    border-radius: 12px;
    box-shadow:
        3.23px 2.15px 13.57px 0px #DF317026,
        21.54px 4.31px 36.62px 0px #0055FE33,
        -10.77px 4.31px 36.62px 0px #DF317033;
    padding: 16px;
    width: fit-content;
}

.icon-box.white {
    background-color: var(--white);
}

.icon-box.black {
    background-color: var(--black);
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border-radius: 10px;
    border: 3px solid transparent;
    background-color: var(--white);
    background-image: linear-gradient(var(--white), var(--white)),
        linear-gradient(170deg, #0055FE, #DF3170);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0px 4px 15.6px 0px #DF317066, 0px -4px 15px 0px #0055FE7A;
    transition: all 0.25s ease;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: transparent;
}

label {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

textarea {
    min-height: 100px !important;
}

.form-group.select svg {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    bottom: 18px;
    right: 14px;
    background-repeat: no-repeat;
    background-size: contain;
}

.form-submit {
    min-width: 188px;
}

.container-fluid {
    max-width: 1920px;
    padding-left: 120px;
    padding-right: 120px;
}

/* global styling ends here */

/* header styling starts here */

header {
    margin-bottom: -96px;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    z-index: 9;
}

.header-logo img {
    width: 140px;
    object-fit: contain;
    height: auto;
}

.header-navigation li a {
    color: rgb(255 255 255 / 60%);
}

.header-navigation li a:hover,
.header-navigation li.current-menu-item a {
    color: var(--white);
}

.header-navigation .services-menu-item a {
    position: relative;

}

/* .header-navigation .services-menu-item a::before {
    content: '';
    position: absolute;
    background-image: url(../images/down-icon.svg);
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    width: 12px;
    height: 6px;
    background-size: contain;
    background-repeat: no-repeat;
}

.header-navigation .services-menu-item.open a::before {
    top: 40%;
    transform: rotate(180deg);
}
 */
.services-menu-dropdown-wrapper {
    border-radius: 16px;
    position: absolute;
    top: 48px;
    border: 1px solid #676767;
    overflow: hidden;
    width: 720px;
}

.services-menu-headings {
    padding: 30px 30px 30px 50px;
    background-color: var(--black);
}

.services-menu-details {
    padding: 30px 50px 30px 30px;
    background-color: #171717;
}

.menu-services-card {
    min-width: 300px;
    padding: 8px;
    margin-left: -8px;
}

.menu-services-card * {
    transition: var(--transition);
}

a.menu-services-card p.heading span {
    display: inline-block;
    min-width: 204px;
}

.menu-services-card:hover {
    background-color: #3B3B3B33;
    border-radius: 4px;
}

.menu-services-card:hover p.heading {
    color: var(--primary) !important;
}

.menu-services-card i {
    position: absolute;
    right: 68px;
}

.menu-services-card:hover i {
    right: 8px;
}

.services-menu-details img {
    border-radius: 8px;
    width: 100%;
    height: 180px;
    border: 1px solid rgb(255 255 255 / 10%);
    object-fit: cover;
    object-position: top;
}

.service-excerpt {
    line-height: 18px;
}

.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 100%;
    background: #111;
    z-index: 9;
    transition: right 0.35s ease;
    padding: 20px;
}

.mobile-menu-wrapper.active {
    right: 0;
}

.mobile-menu-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.mobile-menu-header .mobile-close {
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    position: absolute;
    top: 24px;
    right: 24px;
}

.mobile-nav .mobile-menu-items {
    list-style: none;
    text-align: center;
}

.mobile-nav .mobile-menu-items li {
    margin-bottom: 18px;
}

.mobile-nav .mobile-menu-items li a {
    color: var(--white);
    font-size: 18px;
    text-decoration: none;
}

.mobile-menu-footer {
    margin-bottom: 20px;
}

.mobile-nav li.current-menu-item a {
    color: var(--primary);
}

/* header styling ends here */

/* footer styling starts here */

.top-footer {
    padding-top: 120px;
    padding-bottom: 48px;
    border-bottom: 1px solid #0E2F37;
    z-index: 2;
}

.footer-logo {
    width: 45%;
}

.footer-logo img {
    width: 140px;
    object-fit: contain;
    height: auto;
}

.footer-menus {
    width: 53%;
}

.footer-logo p {
    width: 75%;
}

.footer-navigation li a {
    color: rgb(255 255 255 / 60%);
}

.footer-navigation li a:hover,
.footer-navigation li.current-menu-item a {
    color: var(--white);
}

.bottom-footer {
    padding-top: 48px;
    position: relative;
    z-index: 1;
}

.footer-video {
    z-index: 1 !important;
    margin: -100px -120px -6px -120px;
}

.bottom-footer>* {
    position: relative;
    z-index: 2;
}

/* footer styling ends here */

/* homepage styling starts here */

.home-banner-section {
    position: relative;
    padding-top: 168px;
    padding-bottom: 108px;
}

.banner-video {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    z-index: 0;
}

.home-banner-content {
    position: relative;
    z-index: 1;
}

.home-banner-content p {
    max-width: 430px;
	font-style: italic;
}

.slick-slide img {
    width: 80px !important;
}

.home-banner-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 40%;
}

.home-banner-slider-wrapper::before,
.home-banner-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.home-banner-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.home-banner-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.home-banner-slider::before {
    content: '';
    background-image: url(../images/separator.svg);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
}

.home-stats-section {
    padding-top: 76px;
    padding-bottom: 76px;
    border-top: 1px solid rgb(255 255 255 / 25%);
}

.stats-number {
    font-size: 56px;
}

.services-section {
    padding-top: 92px;
    padding-bottom: 92px;
}

.services-header {
    padding-top: 20px;
}

.heading-wrapper h2 {
    line-height: 54px;
}

.heading-wrapper h2 span {
    font-family: 'Raleway';
}

.services-wrapper {
    padding-top: 64px;
}

/* ---------- Base Service ---------- */
.service {
    position: relative;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--text-dark);
    min-height: 616px;
    overflow: hidden;
    width: 100%;
    color: var(--white);
    transition: all 0.4s ease;
    height: 100%;
}

/* ---------- Background Wrapper ---------- */
.service-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.service-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: blur(3px);
    transition: transform 0.6s ease, filter 0.4s ease;
}

/* ---------- Overlay ---------- */
.service::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    transition: background 0.4s ease;
}

/* ---------- Content Positioning ---------- */
.service>*:not(.service-bg) {
    position: relative;
    z-index: 2;
}

/* ---------- Share Icon ---------- */
.service-open-icon {
    backdrop-filter: blur(5px);
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / 10%);
    padding: 8px;
    position: absolute !important;
    top: 12px;
    right: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* ---------- Overlay Content ---------- */
.services-overlay-content {
    padding-top: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: all 0.5s ease;
}

.services-overlay-content p {
    color: rgb(255 255 255 / 50%);
}

/* ---------- Service Category ---------- */
.service-category {
    border-radius: 10px;
    background-color: #353A41;
    padding: 8px 16px;
    border: rgb(255 255 255 / 5%);
    color: rgb(255 255 255 / 60%);
    position: relative;
}

.service-category::before {
    content: '';
    background-image: url(../images/category-separator.svg);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ---------- Heading ---------- */
.service-content h4::before {
    content: '';
    background-image: url(../images/heading-seperator.svg);
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 80%;
    height: 1px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ---------- Hover Effects ---------- */
.service:hover::after {
    background: rgba(0, 0, 0, 0.7);
}

.service:hover .service-bg img {
    transform: scale(1.1);
    filter: blur(4px);
}

.service:hover .service-open-icon {
    opacity: 1;
    visibility: visible;
}

.service:hover .services-overlay-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.service:not(:hover) .services-overlay-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
}

.expertise-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-image:
        url('../images/expertise-blue-bg.png'),
        url('../images/expertise-pink-bg.png');
    background-repeat: no-repeat, no-repeat;
    background-position: top left, bottom right;
    background-size: auto, auto;
}

.expertise-content {
    padding: 92px 28px 60px;
    background-image: url('../images/expertise-dots-bg.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
}

.expertise-heading-section p {
    max-width: 630px;
    margin: 0 auto;
}

.expertise {
    background-color: #080808;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgb(255 255 255 / 7%);
    background-image: url('../images/expertise-card-dots-bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.single-experties .expertise {
    background-image: url('../images/single-service-dots.png');
}

.single-experties .expertise-info ul {
    padding-left: 0px;
}

.single-experties .expertise-heading::before {
    width: 254px;
}

.single-experties .expertise-info {
    max-height: 232px;
}

.expertise-icon {
    border-radius: 50px;
    border: 2px solid rgb(255 255 255 / 15%);
    background: linear-gradient(to top right, #0035b8, #0055fe);
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-wrapper {
    padding-top: 60px;
}

.expertise-heading::before {
    content: '';
    background-image: url(../images/heading-seperator.svg);
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 80%;
    height: 1px;
    background-repeat: no-repeat;
    background-position: center;
}

.expertise-image img {
    width: 100%;
    border-radius: 8px;
    transition: var(--transition);
    height: 168px;
	object-fit: cover;
}

.expertise::before {
    content: '';
    background-image: url(../images/blue-separator.svg);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-repeat: no-repeat;
    background-position: center;
}

.expertise-hover-bg {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background-image: url('../images/expertise-card-hover-bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.expertise>*:not(.expertise-hover-bg) {
    position: relative;
    z-index: 2;
}

.expertise:hover .expertise-hover-bg {
    opacity: 1;
}

.expertise:hover .expertise-image img {
    transform: scale(1.05);
}

.expertise-see-more-button-wrapper img {
    rotate: 270deg;
}

.expertise-info {
    min-height: 128px;
    max-height: 128px;
    overflow: hidden;
}

.expertise-info p,
.expertise-info li {
    font-size: 14px;
}

.expertise-info ul {
    list-style: inherit;
    padding-left: 16px;
}

.built-on-collaboration-section {
    padding-top: 104px;
    padding-bottom: 104px;
}

.built-on-collaboration-content-wrapper .section-description::after {
    width: 87%;
}

.built-on-collaboration-image img {
    width: 100%;
    border-radius: 30px;
}

.built-on-collaboration-description {
    max-width: 520px;
}

.built-on-collaboration-description::before {
    content: '';
    background-image: url(../images/built-on-collaboration-horizontal-separator.svg);
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 100%;
    height: 1px;
    background-repeat: no-repeat;
    background-position: left;
}

.built-on-collaboration-list li {
    position: relative;
    font-weight: 500;
    padding-left: 32px;
}

.built-on-collaboration-list li::before {
    content: '';
    background-image: url(../images/list-icon.svg);
    position: absolute;
    top: 2px;
    left: 0;
    width: 24px;
    height: 24px;
}

.ratings-wrapper .ratings::before {
    content: '';
    background-image: url(../images/built-on-collaboration-vertical-separator.svg);
    position: absolute;
    top: 0;
    left: -44px;
    width: 1px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.faq-section {
    border-top: 1px solid #282828;
    border-bottom: 1px solid #282828;
}

.faq-heading-section {
    padding-top: 40px;
}

.faq-heading-section .section-description::after {
    background-color: rgb(255 255 255 / 30%);
}

.accordion-button {
    font-size: 20px;
    padding-left: 40px;
    padding-right: 40px;
}

.accordion-body {
    font-size: 14px;
    padding-left: 40px;
    padding-right: 40px;
}

.accordion-button,
.accordion-collapse,
.accordion-button:not(.collapsed) {
    background-color: var(--black);
    color: var(--text-light);
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    box-shadow: none;
    padding-bottom: 0;
    background-color: #2C2C2C;
    border-left: 1px solid var(--primary);
    border-bottom: 0;
}

.accordion-collapse.collapse.show .accordion-body {
    padding-top: 0;
    background-color: #2C2C2C;
    border-left: 1px solid var(--primary);
    border-top: 0;
}

.accordion-button::after {
    display: none;
}

.accordion-item {
    border: 1px solid #282828;
    background-color: var(--black);
}

.accordion-item:first-of-type,
.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: 0;
}

.accordion-item:last-of-type,
.accordion-item:last-of-type>.accordion-header .accordion-button {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom: 0;
}

.smarter-strategies-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.smarter-strategies-content {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #212121;
}

.smarter-strategies-image-section {
    width: 45%;
}

.smarter-strategies-content-section {
    width: 55%;
    background-image: url(../images/smarter-strategies-bg.png);
    background-repeat: no-repeat;
    padding: 30px 30px 30px 60px;
    background-color: #080808;
}

.smarter-strategies-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.smarter-strategies-heading::before {
    content: '';
    background-image: url(../images/smarter-strategies-horizontal-separator.svg);
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 100%;
    height: 1px;
    background-repeat: no-repeat;
    background-position: left;
}

.smarter-strategies-content-section .ratings-wrapper .ratings::before {
    background-image: url(../images/smarter-strategies-vertical-separator.svg);
}

.smarter-strategies-badge .expertise-icon {
    width: 32px;
    height: 32px;
}

.smarter-strategies-badge {
    border: 1px solid rgb(255 255 255 / 5%);
    padding: 6px 16px 6px 6px;
    border-radius: 50px;
    background-color: #131422;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

/* homepage styling ends here */

/* about page styling starts here */

.about-banner-section {
    padding-top: 65px ;
    padding-bottom: 32px;
}

.about-banner-content h1 {
    font-size: 86px;
    max-width: 90%;
}

.about-banner-content p {
    max-width: 580px;
}

.about-banner-content * {
    z-index: 2;
}

.about-banner-image {
    margin-top: -400px;
    z-index: 1;
}

.built-on-collaboration-section.about .heading-wrapper h2 span,
.built-on-collaboration-section.contact .heading-wrapper h2 span {
    font-family: 'Montserrat', sans-serif;
}

.built-on-collaboration-content-wrapper.mission .section-description::after {
    width: 83%;
}

/* about page styling ends here */

/* contact page styling starts here */

.contact-banner-section {
    padding-top: 172px;
}

.contact-banner-content h1 {
    font-size: 86px;
    max-width: 90%;
}

.contact-banner-content p {
    max-width: 580px;
	color: #fff;
}

.contact-form-section {
    padding-top: 72px;
    padding-bottom: 60px;
}

.contact-form-container,
.contact-details-wrapper {
    border: 2px solid rgb(255 255 255 / 8%);
    border-radius: 30px;
    padding: 10px;
    height: 100%;
}

.contact-form-wrapper {
    border: 1px solid rgb(255 255 255 / 8%);
    border-radius: 22px;
    padding: 40px;
    height: 100%;
}

.contact-details-box {
    border: 1px solid rgb(255 255 255 / 8%);
    border-radius: 20px;
    padding: 24px;
}

.contact-details-header .section-tile {
    padding: 0;
    box-shadow: 0px 4px 15.6px 0px #DF317066, 0px -4px 15px 0px #0055FE7A;
}

.contact-details-header::before {
    content: '';
    background-image: url(../images/heading-seperator.svg);
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 80%;
    height: 1px;
    background-repeat: no-repeat;
    background-position: center;
}

.contact-details-info a {
    color: rgb(255 255 255 / 50%);
    font-weight: 500;
    text-transform: inherit;
    word-break: break-word;
}

.contact-details-info {
    margin-top: 36px;
}

/* contact page styling ends here */

/* responsivess starts here */

@media screen and (max-width: 1600px) {
    .footer-video {
        width: 100%;
        margin: -100px 0 -6px;
    }
}

@media screen and (max-width: 1440px) {

    .home-banner-slider-wrapper::after,
    .home-banner-slider-wrapper::before {
        display: none;
    }

    .about-banner-image {
        margin-top: -320px;
        width: 100%;
    }

    .about-banner-content h1,
    .contact-banner-content h1 {
        font-size: 56px;
        max-width: 60%;
    }
}

@media screen and (max-width: 1366px) {

    h1,
    h2 {
        font-size: 40px;
        letter-spacing: inherit;
    }

    h3 {
        font-size: 20px;
    }

    .heading-wrapper h2 {
        line-height: 44px;
    }

    .home-banner-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .container-fluid {
        padding-left: 40px;
        padding-right: 40px;
    }

    .stats-number {
        font-size: 40px;
    }

    .built-on-collaboration-content-wrapper .section-description::after {
        width: 83%;
    }
}

@media screen and (max-width: 1199px) {
    .section-description::after {
        width: 87%;
    }

    .expertise-content {
        padding: 60px 28px;
    }

    .built-on-collaboration-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .about-banner-content h1,
    .contact-banner-content h1 {
        font-size: 40px;

    }

    .about-banner-image {
        margin-top: -220px;
    }

    .built-on-collaboration-content-wrapper.mission .section-description::after {
        width: 79%;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .contact-details-box {
        padding: 16px;
    }

    .footer-video {
        margin: -60px 0 -6px;
    }
}

@media (max-width: 991px) {
	
    .header-menu {
        display: none !important;
    }

    .header-button {
        display: none !important;
    }

    .mobile-hamburger {
        font-size: 24px;
        color: var(--white);
        cursor: pointer;
        position: absolute;
        top: 16px;
        right: 24px;
    }

    .container-fluid {
        padding-left: 24px;
        padding-right: 24px;
    }

    .home-banner-content p {
        color: var(--white);
    }

    .home-stats-section,
    .services-section,
    .built-on-collaboration-section,
    .smarter-strategies-section,
    .contact-form-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .services-header {
        padding-top: 16px;
    }

    .expertise-section {
        padding-top: 56px;
        padding-bottom: 48px;
    }

    .services-wrapper {
        padding-top: 32px;
    }

    .service {
        padding: 16px;
        min-height: inherit;
    }

    .service:not(:hover) .services-overlay-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .section-description::after {
        width: 82%;
    }

    .faq-heading-section .section-description::after {
        width: 90%;
    }

    .smarter-strategies-image-section,
    .smarter-strategies-content-section {
        width: 100%;
    }

    .smarter-strategies-content-section {
        padding: 16px;
    }

    .accordion-button {
        font-size: 18px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .accordion-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .top-footer {
        padding-top: 48px;
    }

    .footer-logo,
    .footer-menus {
        width: 100%;
    }

    .about-banner-section {
        padding-top: 140px;
        padding-bottom: 48px;
        background-image: linear-gradient(#ff007a36, #9661921f, #ff007a36);
    }

    .contact-banner-section {
        padding-top: 140px;
    }

    .about-banner-content h1,
    .contact-banner-content h1 {
        max-width: 80%;
    }

    .contact-form-wrapper {
        padding: 16px;
    }

    .contact-details-header::before {
        width: 100%;
    }

    .footer-video {
        margin: -40px 0 -6px;
    }
}

@media screen and (max-width: 767px) {

    h1,
    h2 {
        font-size: 36px;
    }

    h3,
    h4,
    h5 {
        font-size: 16px;
    }

    p,
    a {
        font-size: 14px;
    }

    .section-tile .text {
        font-size: 14px;
    }

    .section-tile {
        gap: 8px;
    }

    .home-banner-slider-wrapper {
        width: 60%;
    }

    .mobile-hamburger {
        top: 12px;
    }

    .section-description::after {
        width: 77%;
    }

    .expertise-content {
        padding: 48px 16px;
    }

    .faq-heading-section .section-description::after {
        width: 87%;
    }

    .footer-menus .footer-menu {
        width: 48%;
    }

    .about-banner-content h1,
    .contact-banner-content h1 {
        max-width: 100%;
    }

    .btn-secondary::before {
        opacity: 0.8;
    }

    .shimmer {
        color: var(--white);
    }
}

@media screen and (max-width: 575px) {

    h2 {
        font-size: 32px;
    }

    .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }

    .mobile-hamburger {
        right: 12px;
    }

    .home-banner-slider-wrapper {
        width: 100%;
    }

    .section-description::after,
    .ratings-wrapper .ratings::before {
        display: none;
    }

    .about-banner-content h1,
    .contact-banner-content h1 {
        font-size: 28px;
    }

    .smarter-strategies-badge span {
        font-size: 14px;
    }

    .heading-wrapper h2 {
        line-height: 36px;
    }

    .contact-form-wrapper a {
        width: 100%;
    }

    .footer-video {
        margin: -20px 0 -6px;
    }
}

/* responsivess ends here */


.page-template-services header {
    background-color: var(--black);
}

.page-template-services .services-section,
.page-template-expertise .expertise-section {
    padding-top: 152px;
}





/* section market growth css*/
.markets-growth-section {
    background-color: #000;
    color: #fff;
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
}

.markets-growth-section .section-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.markets-growth-section .section-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--white);
    max-width: 876px;
    padding-left: 0px;
}

.markets-growth-section .section-description::before {
    display: none;
}

.markets-growth-section .section-description::after {
    display: none;
}

.services-cards {
    margin-bottom: 60px;
}

/* .service-card {
    background: linear-gradient(135deg, rgba(30, 20, 40, 0.6) 0%, rgba(20, 10, 30, 0.8) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
} */

.service-card {
    position: relative;
    padding: 32px;
    height: 100%;
    border-radius: 12px;
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.03)),
        linear-gradient(293.64deg, rgba(0, 85, 254, 0.1) 5.45%, rgba(215, 50, 118, 0.1) 82.33%);
    transition: all 0.3s ease;
    z-index: 0;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    /* border thickness */
    border-radius: 12px;
    background: linear-gradient(142.76deg, #DF3170 23.12%, #0055FE 99.97%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}



.service-card:hover {
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.service-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #d1d5db;
    margin: 0;
    position: relative;
}

.feature-image-wrapper {
    border-radius: 16px;
    /* overflow: hidden; */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.feature-image-wrapper::before,
.tech-image-wrapper::before {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1.31px;
    opacity: 1;
    background: linear-gradient(90deg,
            rgba(0, 85, 255, 0) 0%,
            #0055FF 50%,
            rgba(0, 85, 255, 0) 100%);
    box-shadow: 0 0 6px rgba(0, 85, 255, 0.6);
}

.business-advisory .services-cards {
    border-radius: 16px;
    padding: 32px;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(142.76deg, #0055FE 1.29%, #DF3170 78.15%) border-box;
    border: 1px solid transparent;
    box-sizing: border-box;
}

.business-card {
    padding: 30px;
}

.business-cards {
    width: 50%;
}

.business-cards:first-child .business-card {
    border-bottom: 1px solid #D9D9D9;
}

.business-cards:nth-child(2) .business-card {
    border-bottom: 1px solid #D9D9D9;
    border-left: 1px solid #D9D9D9;
}

.business-cards:nth-child(3) .business-card {
    border-bottom: none;
}

.business-cards:nth-child(4) .business-card {
    border-bottom: none;
    border-left: 1px solid #D9D9D9;
}

.business-card h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--black);
    max-width: 94%;
    margin-bottom: 10px;
}

.business-card p {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    max-width: 98%;
}

.business-advisory .business-icon {
    background: radial-gradient(50% 50% at 50% 50%, #061427 59.62%, #000001 100%);
    border: 0.54px solid #DF3170;
    box-shadow:
        0px 4.31px 4.74px 0px #00000073 inset,
        3.23px 2.15px 13.57px 0px #DF31701F,
        21.54px 4.31px 36.62px 0px #0055FE1F,
        -10.77px 4.31px 36.62px 0px #DF31701F;
    border-radius: 10px;
    padding: 12px 14px;
    width: fit-content;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }

    .markets-growth-section {
        padding: 60px 0;
    }

    .services-cards {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .service-card {
        padding: 24px;
    }

    .service-card-title {
        font-size: 1.25rem;
    }


    .business-cards:first-child .business-card {
        border-bottom: none;
    }

    .business-cards:nth-child(2) .business-card {
        border-bottom: none;
        border-left: none;
    }

    .business-cards:nth-child(3) .business-card {
        border-bottom: none;
    }

    .business-cards:nth-child(4) .business-card {
        border-bottom: none;
        border-left: none;
    }

    .business-advisory .services-cards {
        padding: 0;
    }

    .business-cards {
        width: 100%;
    }
}






/* business growth section */
/* Hero Section */
.hero-section {
    width: 100%;
    height: 400px;
    background:
        url('../images/experties-growth-shadow-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 68, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;

}

.hero-title {
    font-size: 64px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 64px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Technology Section */
.technology-section {
    background: #000000;
    padding: 100px 0;
}

.tech-content-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.tech-left {
    flex: 1;
    max-width: 568px;
}

.tech-right {
    flex: 1;
    max-width: 600px;
}

.tech-heading {
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.tech-description {
    font-size: 20px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 60px;
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-list-item {
    border-left: 1px solid #D9D9D9;
    padding: 16px 0 16px 40px;
    position: relative;
}

.tech-list-item:hover {
    border-left-color: var(--white);
    border-width: 4px;
    cursor: pointer;
}

/* .tech-list-item:hover .item-number {
    color: #4a90e2;
} */

.item-number {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.item-title {
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 10px;
}

.item-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 400px;
}

.tech-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.tech-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.business-tabs {
    position: relative;
    background: #000;
    /* pure black */
    border-radius: 76px;
    padding: 8px;
    max-width: 724px;
    display: flex;
    gap: 10px;
    backdrop-filter: blur(43.59px);
}

/* Gradient Border Layer */
.business-tabs::before {
    content: "";
    position: absolute;
    inset: 0;
    /* full cover */
    padding: 1px;
    /* border thickness */
    border-radius: 76px;
    background: linear-gradient(142.76deg, #0055FE 1.29%, #DF3170 78.15%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.business-tab {
    padding: 16px;
    border-radius: 60px;
    width: fit-content;
    font-size: 16px;
    font-weight: 600;
    /* white-space: nowrap; */
    color: var(--white);
    cursor: pointer;
}

.business-tab.active {
    background-color: var(--white);
}

.business-tab.active .text-gradient {
    background: linear-gradient(125.23deg, #0055FE 14.35%, #DF3170 71.19%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experties-banner-section {
    background-image: url('../images/experties-banner.png');
    width: 100%;
    height: 670px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.experties-banner-section.info-conditions-pages {
    height: 416px;
}

.experties-banner-section h1 {
    max-width: 94%;
}

.experties-collaboration-section li span {
    color: var(--black);
    font-weight: 700;
}

.experties-collaboration-section .section-description::after {
    width: 77%;
}

.tech-image-wrapper::before {
    bottom: 34px;
}

.page-template-terms-conditions h2,
.page-template-privacy-policy h2 {
    font-size: 32px;
	margin-top: 12px;
}

.page-template-terms-conditions p,
.page-template-privacy-policy p {
    font-size: 16px;
}

.page-template-terms-conditions h1 ,
.page-template-privacy-policy h1 {
	margin-top: 16px;
}

.page-template-terms-conditions h1 strong,
.page-template-privacy-policy h1 strong{
    font-size: 44px;
	color: #000;
	margin-top: 16px;
	letter-spacing: .1px;
}

.page-template-privacy-policy h1 strong{
    font-size: 36px;
}

.single-experties .expertise-image img {
    height: -webkit-fill-available;
    width: 396px;
    min-width: 396px;
}

.built-on-collaboration-content-wrapper .top-warnning {
    color: #FF6243;
    font-size: 15.63px;
    font-weight: 600;
}

.why-us-card p {
    max-width: 236px;
}

.why-us-content .ratings-wrapper {
    margin-top: 68px;
}

.scalable-list ul li {
    list-style: none;
}

.single-service-why-us img {
    border: none;
    height: 100%;
}

.service-content ul li {
    position: relative;
    font-weight: 500;
    padding-left: 32px;
    margin-bottom: 12px;
}

.service-content ul li::before {
    content: '';
    background-image: url(../images/list-icon.svg);
    position: absolute;
    top: 2px;
    left: 0;
    width: 24px;
    height: 24px;
}

@media (max-width: 1024px) {
    .single-experties .expertise-image img {
        width: 300px;
        min-width: 300px;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .tech-content-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .tech-left,
    .tech-right {
        max-width: 100%;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 48px;
    }

    .tech-heading {
        font-size: 42px;
    }

}

@media (max-width: 767px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 36px;
    }

    .tech-heading {
        font-size: 32px;
    }

    .technology-section {
        padding: 60px 0;
    }

    .tech-list-item {
        padding: 20px 0 20px 30px;
    }

    .item-title {
        font-size: 20px;
    }


    .experties-banner-section {
        height: 580px;
    }

    .technology-section .business-sticky-tabs {
        position: sticky;
        top: 20px;
        z-index: 9;
    }

    .business-tabs {
        padding: 4px;
        max-width: 710px;
        gap: 4px;
        backdrop-filter: blur(43.59px);
    }

    .business-tab {
        padding: 4px;
        font-size: 12px;
        text-align: center;
        word-wrap: break-word;
    }

    .card-right-content .expertise-info {
        max-height: -webkit-fill-available;
    }

    .single-experties .expertise-image img {
        width: 100%;
        min-width: 100%;
    }
	
	.services-single-cards .col-12:nth-child(even) a .services-single-card{
		flex-direction: column-reverse !important;
	}
	
	.expertise {
		padding: 16px;
	}	
	
	.markets-growth-section .section-title {
		font-size: 34px;
	}
}

@media (max-width: 575px) {
    .experties-banner-section {
        height: 480px;
    }

    .business-tabs {
        max-width: 510px;
    }

    .why-us-card p {
        max-width: 175px;
    }
	
	.tech-description,
	.markets-growth-section .section-description {
		font-size: 16px;
	}
	
	.markets-growth-section {
        padding: 44px 0;
    }
	
	.business-card {
		padding: 24px;
	}
}

@media (max-width: 480px) {
    .business-tabs {
        max-width: 360px;
    }
}
@media (max-width: 365px) {
    .business-tabs {
        max-width: 354px;
    }
}













/* chat gpt */

.business-tab {
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
}

.business-tab.active {
    background-color: var(--white);
}

.business-tab.active .text-gradient {
    background: linear-gradient(125.23deg, #0055FE 14.35%, #DF3170 71.19%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animation container for sliding effect */
.business-tab.slide-left {
    transform: translateX(-20px);
    opacity: 0;
}

.business-tab.slide-right {
    transform: translateX(20px);
    opacity: 0;
}

.business-tab.animate-in {
    transform: translateX(0);
    opacity: 1;
    transition: all 0.5s ease;
}




/* deepseek */
/* .business-tab {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.business-tab.slide-left:before {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    animation: slideLeftOut 0.3s forwards;
}

.business-tab.slide-right:before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    animation: slideRightOut 0.3s forwards;
}

.business-tab.slide-left-in:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    animation: slideLeftIn 0.3s forwards;
}

.business-tab.slide-right-in:before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    animation: slideRightIn 0.3s forwards;
}

@keyframes slideLeftOut {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

@keyframes slideRightOut {
    0% {
        right: 0;
    }

    100% {
        right: -100%;
    }
}

@keyframes slideLeftIn {
    0% {
        left: -100%;
    }

    100% {
        left: 0;
    }
}

@keyframes slideRightIn {
    0% {
        right: -100%;
    }

    100% {
        right: 0;
    }
}

.business-tab.active {
    background-color: var(--white);
}

.business-tab.active .text-gradient {
    background: linear-gradient(125.23deg, #0055FE 14.35%, #DF3170 71.19%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */