.container {
    max-width: 1302px;
}

:root {
    --nav-bg: rgba(4, 7, 14, 0.88);
    --nav-panel: rgba(17, 21, 30, 0.96);
    --nav-muted: rgba(235, 241, 255, 0.7);
    --nav-text: #f2f5ff;
    --nav-accent: #f4c263;
    --nav-border: rgba(255, 255, 255, 0.12);
}

.site-header {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
}

body {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    /* transition: transform 0.4s ease-in-out; */
    transition: transform 0.4s ease-in-out 0.2s;
}

.header-hidden {
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out 0.2s;
}

.navbar {
    -webkit-backdrop-filter: blur(8px);
    padding: 14px 0px;
    background: linear-gradient(95deg, rgba(12, 8, 24, 0.9) 0%, var(--nav-bg) 45%, rgba(8, 16, 28, 0.92) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-link {
    font-size: 17px;
    font-weight: 500;
    color: var(--nav-text);
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 28px;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--nav-accent);
}

.navbar .nav-link:focus,
.navbar .nav-link:focus-visible,
.navbar .dropdown-toggle:focus,
.navbar .dropdown-toggle:focus-visible,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:focus-visible {
    outline: none;
    box-shadow: none;
}


.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--nav-accent);
}

.dropdown-toggle::after {
    border: none;
    content: "";
}

.dropdown-toggle::after {
    display: inline-block;
    width: 12px;
    height: 7px;
    margin-left: 3px;
    vertical-align: middle;

    background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.4481 6.41218L0.138095 0.839176C0.0494507 0.746188 0 0.622646 0 0.494175C0 0.365705 0.0494507 0.242164 0.138095 0.149176L0.144095 0.143176C0.187069 0.0979404 0.238795 0.0619211 0.296128 0.0373073C0.353461 0.0126934 0.415202 0 0.477595 0C0.539989 0 0.60173 0.0126934 0.659063 0.0373073C0.716396 0.0619211 0.768122 0.0979404 0.811095 0.143176L5.8111 5.39118L10.8091 0.143176C10.8521 0.0979404 10.9038 0.0619211 10.9611 0.0373073C11.0185 0.0126934 11.0802 0 11.1426 0C11.205 0 11.2667 0.0126934 11.3241 0.0373073C11.3814 0.0619211 11.4331 0.0979404 11.4761 0.143176L11.4821 0.149176C11.5707 0.242164 11.6202 0.365705 11.6202 0.494175C11.6202 0.622646 11.5707 0.746188 11.4821 0.839176L6.1721 6.41218C6.1254 6.46119 6.06923 6.50021 6.00701 6.52687C5.94478 6.55353 5.87779 6.56728 5.8101 6.56728C5.7424 6.56728 5.67541 6.55353 5.61318 6.52687C5.55096 6.50021 5.49479 6.46119 5.4481 6.41218Z' fill='white'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.2s ease;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 1px solid var(--nav-border);
    border-radius: 16px;
    padding: 10px;
    background: var(--nav-panel);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
}

.navbar .dropdown-item {
    color: var(--nav-text);
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    padding: 10px 14px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.navbar .dropdown-divider {
    border-top-color: rgba(255, 255, 255, 0.18);
}

.navbar .mega-dropdown {
    position: static;
}

.navbar .mega-menu {
    width: min(1040px, calc(100vw - 36px));
    max-width: 1040px;
    padding: 0px;
}

.navbar .mega-menu-services {
    width: min(1200px, calc(100vw - 36px));
    max-width: 1200px;
    padding: 0;
    max-height: min(72vh, 700px);
    overflow-y: auto;
    overflow-x: hidden;
}

.mega-menu-inner {
    padding: 16px;
}

.mega-title {
    margin: 4px 8px 10px;
    color: rgba(244, 244, 244, 0.72);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

.mega-link {
    margin-bottom: 4px;
}

.menu-matrix {
    padding: 0;
    overflow: hidden;
}

.menu-matrix .matrix-row {
    display: grid;
    grid-template-columns: 210px 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-matrix .matrix-row:last-child {
    border-bottom: 0;
}

.menu-matrix .matrix-group {
    background: rgba(116, 194, 224, 0.24);
    color: #e4f6ff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.menu-matrix .matrix-group:hover {
    color: #fff;
    background: rgba(116, 194, 224, 0.32);
}

.menu-matrix .matrix-sub-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

.menu-matrix .matrix-sub-item {
    border-radius: 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.25;
}

.menu-matrix .matrix-sub-item:nth-child(2n) {
    border-right: 0;
}

.menu-matrix .matrix-sub-item:hover,
.menu-matrix .matrix-sub-item:focus {
    transform: none;
    background: rgba(255, 255, 255, 0.08);
}

.mega-menu-ai {
    width: min(920px, calc(100vw - 36px));
    max-width: 920px;
    padding: 0;
    overflow: hidden;
}

.mega-menu-services .matrix-sub-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mega-menu-services .matrix-sub-item:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-menu-services .matrix-sub-item:nth-child(3n) {
    border-right: 0;
}

@keyframes dropdownSlideUp {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(8px) scale(0.98);
        transform-origin: top center;
        transition: opacity 0.2s ease, transform 0.28s ease, visibility 0.2s ease;
    }

    .navbar .dropdown>.dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
        animation: dropdownSlideUp 0.28s ease-out;
    }

    .navbar .nav-item.dropdown>.dropdown-toggle.show::after {
        transform: rotate(180deg);
    }

    .dropdown-toggle::after {
        transition: transform 0.2s ease;
    }

    .navbar .mega-dropdown .dropdown-menu {
        top: 100%;
        left: 50%;
        right: auto;
        transform: translate(-50%, 18px) scale(0.98);
    }

    .navbar .mega-dropdown>.dropdown-menu.show {
        transform: translate(-50%, 0) scale(1);
        animation: none;
    }
}

@media (min-width: 1200px) {
    .navbar .mega-menu-services .col-xl-4 {
        flex: 0 0 auto;
        width: 25%;
    }
}

.get-touch-btn {
    padding: 14px 30px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #330a9e 0%, #7a2adb 100%);
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(55, 12, 152, 0.28);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.nav-cta-wrap {
    gap: 12px;
    align-items: center;
}

.get-touch-btn span {
    margin-right: 12px;
    white-space: nowrap;
}

.get-touch-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.get-touch-btn:hover {
    color: #fff;
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(55, 12, 152, 0.36);
}

.nav-search-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: transparent;
    color: #fff;
    font-size: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-search-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}


.btn-primary {
    border-radius: 100px;
    border: 1px solid #FFF;
    color: #FFF;
    text-align: right;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.16px;
    padding: 16px 32px;
    background: transparent;

}

.btn-primary:hover {
    color: #fff;
    border-radius: 100px;
    background: linear-gradient(90deg, #00073E 0%, #5F0289 100%);
    border-color: transparent;
}


.btn-primary2 {
    color: #fff;
    border-radius: 100px;
    background: linear-gradient(90deg, #00073E 0%, #5F0289 100%);
    border-color: transparent;
}

.hero-section h1 {
    color: #F4F4F4;
    font-family: Roboto;
    font-size: 52px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 67.6px */
    letter-spacing: -0.52px;
}

.hero-section p {
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    letter-spacing: -0.439px;
}

.sub-left-heading {
    color: #090A11;
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 44px */
    letter-spacing: -1.2px;
}

.fw-normal {
    color: #090A11;
    font-family: Roboto;
    font-size: 54px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.62px;
}

.text-muted {
    color: #878C91 !important;
}

.partner-card {
    border-radius: 20px;
    border: 1px solid #5A5A5A;
    height: 148px;
    background: #fff;
    transition: 0.5s;
}

.partner-card:hover {
    background: #F9F9F9;
    border-color: transparent;
    transition: 0.5s;
}

/* 
.ai-tech-section h2 {
    font-size: 2.5rem;
    line-height: 1.3;
} */

.ai-card {
    border-radius: 24px;
    overflow: hidden;
}

.ai-card img {
    min-height: 420px;
    object-fit: cover;
}

.ai-card-content {
    left: 50px;
    bottom: 50px;
    max-width: 70%;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 640px;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ai-card-content h3 {
    color: #FFF;
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 44px */
    letter-spacing: -1.2px;
}

.ai-card-content p {
    color: #FFF;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 26px */
    letter-spacing: -0.4px;
}

/* 
.expertise-section h2 {
    font-size: 2.6rem;
    line-height: 1.25;
} */

.expertise-card {
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f3f8, #fdfdfd);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-section h6 a {
    color: #090A11;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.expertise-section .h6 small {
    color: #878C91;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.bg-purple {
    background: linear-gradient(135deg, #7b3fe4, #4b64f2);
}

.arrow {
    font-size: 20px;
    color: #6c757d;
}

.see-all-btn {
    background: linear-gradient(135deg, #0a0a23, #5a189a);
    border: none;
}

.cta-ai {
    border-radius: 28px;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background image full cover */
.cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Optional dark overlay for readability */
.cta-ai::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.cta-content {
    z-index: 2;
    /* max-width: 820px; */
}

.cta-content h2 {
    color: #F4F4F4;
    text-align: center;
    font-family: Roboto;
    font-size: 52px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 67.6px */
    letter-spacing: -1.04px;
}

/* 
.services-section h2 {
    font-size: 2.5rem;
    line-height: 1.3;
} */

.service-card {
    border-radius: 10px;
    border: 1px solid #E6E6E6;
    background: #F9F9F9;
    padding: 40px 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.services-section .service-card,
.manage-it-section .mini-card {
    cursor: pointer;
}

.services-section .service-card.is-active,
.manage-it-section .mini-card.is-active {
    border-color: #090A11;
    background: #fff;
    box-shadow: 0 10px 30px rgba(9, 10, 17, 0.14);
}

.services-section .service-card:focus-visible,
.manage-it-section .mini-card:focus-visible {
    outline: 2px solid #090A11;
    outline-offset: 2px;
}

.service-card:hover {
    /* transform: translateY(-6px); */
    box-shadow: 1px 7px 7px 1px #ccc;
}

.service-card h6 {
    color: #1A1A1A;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    /* 144.444% */
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: #f8f9fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-box img {
    width: 32px;
    height: 32px;
}

/* Featured card */
.featured-card {
    border: 1px solid #E6E6E6;

    padding: 20px;
    gap: 24px;
    border-radius: 10px;
    background: #F9F9F9;
}

.textblack {
    color: #090A11;
    text-align: right;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.16px;
}

.textblack:hover {
    color: #fff !important;
}

.textblack:hover svg path {
    stroke: #fff !important;
}

.featured-img img {
    width: 17.5625rem;
    height: 16.4375rem;
    flex-shrink: 0;
    border-radius: 0.75rem;
    box-shadow: 12px 12px 30px 0 rgba(8, 8, 8, 0.09);
}

.featured-content h1 {
    color: #090A11;
    font-family: "IBM Plex Sans";
    font-size: 5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 5rem */
    letter-spacing: -0.05rem;
}

.featured-content h3 {
    color: #090A11;
    font-family: Roboto;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.05rem;
}

.featured-content span {
    color: #878C91;
    font-family: Roboto;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    /* 2.25rem */
    letter-spacing: -0.01125rem;
}

.featured-content p {
    color: #878C91;
    font-family: Roboto;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 1.925rem */
    letter-spacing: -0.0275rem;
}

.featured-cta {
    margin-left: auto;
    position: static;
    align-self: flex-end;
    flex: 0 0 auto;
}

/* Mini cards */
/* .mini-card {

    padding: 30px 20px;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #E6E6E6;
    background: #F9F9F9;
} */

.icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin: 0 auto;
}

.icon.purple {
    background: #f3e8ff;
    color: #9333ea;
}

.icon.green {
    background: #e7f8ed;
    color: #22c55e;
}

.icon.violet {
    background: #f5e9ff;
    color: #7c3aed;
}

.icon.orange {
    background: #fff1e6;
    color: #f97316;
}

/* Mobile fix */
@media (max-width: 768px) {
    .featured-card {
        flex-direction: column;
        text-align: center;
    }

    .featured-cta {
        margin-left: 0;
    }
}


.modern-stack-section h2 {
    color: #090A11;
    font-family: Roboto;
    font-size: 3.375rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.10125rem;
}

.modern-stack-section p {
    color: #090A11;
    font-family: Roboto;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 1.625rem */
    letter-spacing: -0.025rem;
}

.tech-stack-img {
    max-width: 520px;
}

.modern-stack-svg rect[rx="9.5"],
.modern-stack-svg path {
    transition: fill 0.28s ease, stroke 0.28s ease, opacity 0.28s ease;
}

.modern-stack-svg rect[rx="9.5"] {
    cursor: pointer;
    fill: transparent;
    pointer-events: all;
}


.industry-card {
    border-radius: 1.5rem;
    border: 1px solid #E6E6E6;
    background: #F9F9F9;
    padding: 40px 20px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.industry-card h6 {
    color: #1A1A1A;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: Roboto;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.625rem;
    /* 144.444% */
}

.industry-card_hover {
    display: none;
}



.industry-card:hover .industry-card_hover {
    position: absolute;
    left: 0px;
    height: 100%;
    width: 100%;
    border-radius: 1.5rem;
    background: linear-gradient(180deg, #00073E 0%, #5F0289 100%);
    top: 0px;
    z-index: 999;
    color: #fff;
    padding: 20px;
    display: block;
    cursor: default;
}

.industry-card_hover p {
    color: #FFF;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 23.4px */
    letter-spacing: -0.36px;
}

.industry-card_hover h5 {
    color: #FFF;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.industry-card .icon {
    font-size: 32px;
    color: #9ca3af;
}

/* Dark card */
.roi-card {
    background: #000;
    border-radius: 28px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.roi-card::before {
    content: "";
    position: absolute;
    inset: -20% auto auto 34%;
    width: 860px;
    height: 860px;
    background: url(../images/Maskgroup.png) center/contain no-repeat;
    opacity: 0.8;
    z-index: 0;
    transform-origin: 50% 50%;
    animation: roi-circle-spin 30s linear infinite, roi-circle-drift 8s ease-in-out infinite alternate;
}

.roi-card>* {
    position: relative;
    z-index: 1;
}

@keyframes roi-circle-spin {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes roi-circle-drift {
    from {
        translate: 0 0;
    }

    to {
        translate: 0 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .roi-card::before {
        animation: none;
    }
}


.roi-card h3 {
    color: #FFF;
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 44px */
    letter-spacing: -1.2px;
}

.roi-card p {
    color: #FFF;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 26px */
    letter-spacing: -0.4px;
}

/* Stat cards */
.stat-card {
    border-radius: 15px;
    padding: 35px 16px;
    height: 100%;

}

.stat-card h4 {
    color: #101828;
    text-align: center;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    /* 90% */
    letter-spacing: 0.396px;
}

.stat-card p {
    color: #4A5565;
    text-align: center;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: -0.312px;
}

.bg-light-blue {
    background: #f1f8ff;
}

.bg-light-purple {
    background: #f7f0ff;
}

.bg-light-green {
    background: #f1fff7;
}

.bg-light-orange {
    background: #fff5ec;
}

.stat-card .icon {
    font-size: 28px;
}

.cta-gradient-section {
    min-height: 500px;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    display: flex;
    position: relative;
    overflow: hidden;
    background: #050b1f;
}

.cta-gradient-section::before {
    content: "";
    position: absolute;
    inset: -8%;
    background: url(../images/gbg.jpg) no-repeat center center;
    background-size: cover;
    z-index: 0;
    transform-origin: center;
    animation: cta-bg-pan 28s linear infinite;
}

.cta-gradient-section .container {
    position: relative;
    z-index: 1;
}

@keyframes cta-bg-pan {
    0% {
        transform: scale(1.08) translate3d(0, 0, 0);
    }

    25% {
        transform: scale(1.1) translate3d(-2.8%, -1.8%, 0);
    }

    50% {
        transform: scale(1.11) translate3d(2.2%, -2.2%, 0);
    }

    75% {
        transform: scale(1.1) translate3d(2.8%, 1.8%, 0);
    }

    100% {
        transform: scale(1.08) translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .cta-gradient-section::before {
        animation: none;
    }
}




.cta-gradient h2 {
    color: #F4F4F4;
    text-align: center;
    font-family: Roboto;
    font-size: 52px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 67.6px */
    letter-spacing: -1.04px;
}

.cta-gradient p {
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 26px */
    letter-spacing: -0.4px;
}



/* Cards */
.testimonial-card {
    border-radius: 28px;
    padding: 64px 41px;
    height: 100%;
}

.testimonial-card p {
    color: #fff;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 26px */
    letter-spacing: -0.4px;
}

.testimonial-card strong {
    color: #FFF;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 166.667% */
}

.testimonial-card.light strong,
.testimonial-card.light small {
    color: #090A11;
}


.testimonial-card small {
    color: #FFF;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 166.667% */
}

/* Variants */
.testimonial-card.dark {
    background: linear-gradient(135deg, #6b6f73, #2f3336);
    color: #fff;
}

.testimonial-card.gradient {
    background: linear-gradient(135deg, #0b022e, #6a1bb1);
    color: #fff;
}

.testimonial-card.light {
    background: #f3f3f3;
    color: #000;
}


.testimonial-card h4 {
    color: #fff;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    /* 100% */
}

.testimonial-card.light h4,
.testimonial-card.light p {
    color: #090A11;
}

/* Avatar */
.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

/* Nav buttons */
.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 18px;
}

.nav-btn.active {
    background: linear-gradient(135deg, #2b0a78, #6a1bb1);
    color: #fff;
    border: none;
}


.insight-card {
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 16px;
    height: 100%;
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}


.insight-card .bg-dark {
    border-radius: 16px;
    background: #000;
    color: #CBCBCB;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.insight-card h5 a {
    color: #181A2A;
    font-family: Roboto;
    text-decoration: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 116.667% */
}

.insight-card small {
    color: #97989F;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
}

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


.contact-section {
    background: url(../images/bg10.png) center center;
    background-size: cover;
}

.contact-section h2 {
    color: #FFF;
    font-family: Roboto;
    font-size: 54px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.62px;
}

.contact-section p {
    color: #FFF;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 26px */
    letter-spacing: -0.4px;
}


/* Form Card */
.contact-card {
    border-radius: 40px;
    background: rgba(254, 254, 254, 0.10);
    padding: 84px;
}

.contact-card h4 {
    color: #FFF;
    font-family: Roboto;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    /* 83.333% */
}

.contact-card p {
    color: #FFF;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 26px */
    letter-spacing: -0.4px;
}

.form-control::placeholder {
    color: #FFF;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;

    /* 150% */
}


.newsletter .form-control::placeholder {
    color: #B0B0B0;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 26.76px;
    /* 178.398% */
    letter-spacing: -0.3px;
    padding-left: 20px;
}

.newsletter small {
    color: #FFF;
    font-family: Roboto;
    font-size: 13.38px;
    font-style: normal;
    font-weight: 500;
    line-height: 20.07px;
    /* 150% */
    letter-spacing: -0.134px;
}

.form-control {
    padding: 10px 0px !important;
    height: 55px;
}

/* Inputs */
.form-dark {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;
    color: #fff;
}

.form-dark:focus {
    background: transparent;
    box-shadow: none;
    border-color: #7c3aed;
    color: #fff;
}

/* Button */
.contact-card .btn-primary {
    background: linear-gradient(135deg, #2b0a78, #6a1bb1);
    border: none;
}

.footer-section {
    background: linear-gradient(226deg, #00073E 0%, #5F0289 100%);
}

.footer-section h5 {
    color: #FFF;
    font-family: Roboto;
    font-size: 30.105px;
    font-style: normal;
    font-weight: 600;
    line-height: 95%;
    /* 28.599px */
    letter-spacing: -1.204px;
    text-transform: uppercase;
}

.custominput {
    width: 60%;
}

.custombutton {
    width: 40%;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
}

.footer-title {
    color: #FFF;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 99%;
    /* 19.8px */
    letter-spacing: -0.2px;
    padding-bottom: 24px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #FFF;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    /* 32px */
    letter-spacing: -0.16px;
    text-decoration: none;
}

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

/* Newsletter */
.newsletter input {
    border-radius: 30px;
    padding: 12px 18px;
    border: none;
}

.btn-gradient {
    border-radius: 30px;
    border: none;
    color: #fff;
    padding: 12px 20px;
}

/* Clutch */
.clutch-box h4 {
    font-size: 2rem;
}

.stars {
    color: #ff5a5f;
}

/* Social */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-right: 8px;

    text-decoration: none;
}

.global-offices {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    margin-top: -22px;
    padding-top: 1.25rem !important;
}

.office-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0.2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.office-block p {
    color: #FFF;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 18.2px */
    letter-spacing: 0.26px;
    text-transform: uppercase;
}

.social-icons {
    margin-top: 6rem !important;
    text-align: right;

}

.clutch-box {
    margin-top: 10rem !important;
}

/* Vertical separator for desktop */
.with-border {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

/* Mobile fix */
@media (max-width: 991px) {
    .with-border {
        border: none;
    }

    .office-title {
        font-size: 2.4rem;
    }

    .global-offices {
        margin-top: -8px;
        padding-top: 1rem !important;
    }
}


/* Gen ai page  */

.gen_hero-section {
    background: #ffffff;
    padding-top: 200px;
}

.gen_hero-title {
    color: #090A11;
    text-align: center;
    font-family: Roboto;
    font-size: 54px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.62px;
}

.gen_hero-text {
    color: #090A11;
    text-align: center;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 26px */
    letter-spacing: -0.4px;
}

.gen_hero-btn {
    background: linear-gradient(90deg, #3b0a8f, #7a1fd0);
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gen_hero-btn:hover {
    background: linear-gradient(90deg, #7a1fd0, #3b0a8f);
    color: #fff;
}

.gen_hero-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
}

.gen_hero-image {
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    border-radius: 20px;
}


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



.gen_ai_services_section {
    background: #ffffff;
}

.gen_ai_services_title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #111;
}

.gen_ai_services_desc {
    max-width: 900px;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.gen_ai_service_card {
    background: #f7f7f7;
    border-radius: 18px;
    padding: 24px;
    height: 100%;
}

.gen_ai_service_card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 10px;
    color: #111;
}

.gen_ai_service_card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

.gen_ai_icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}

/* Icon Colors */
.gen_ai_icon.pink {
    background: #fde2e2;
}

.gen_ai_icon.blue {
    background: #e0f2ff;
}

.gen_ai_icon.purple {
    background: #efe3ff;
}

.gen_ai_icon.green {
    background: #e6ffe6;
}

.gen_ai_icon.mint {
    background: #e3fff6;
}

.gen_ai_icon.yellow {
    background: #fff4cc;
}

.gen_ai_icon.lightblue {
    background: #e6f0ff;
}

.gen_ai_icon.red {
    background: #ffe2e2;
}

@media (max-width: 768px) {
    .gen_ai_services_title {
        font-size: 1.9rem;
    }
}


.gen_ai_cta_section {
    background: #000;
    padding: 80px 0px 0px 0;
    color: #fff;
}

.gen_ai_cta_title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.gen_ai_cta_desc {
    font-size: 1.05rem;
    color: #cfcfcf;

    line-height: 1.6;
}

.gen_ai_cta_btn {
    border: 1.5px solid #fff;
    border-radius: 50px;
    padding: 12px 26px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.gen_ai_cta_arrow {
    margin-left: 10px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.gen_ai_cta_btn:hover {
    background: #fff;
    color: #000;
}

.gen_ai_cta_btn:hover .gen_ai_cta_arrow {
    transform: translateX(6px);
}

.gen_ai_cta_image {
    max-width: 90%;
}

/* Responsive */
@media (max-width: 768px) {
    .gen_ai_cta_title {
        font-size: 1.9rem;
    }
}

.gen_ai_success_section {
    background: #ffffff;
}

.gen_ai_success_title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #111;
}

.gen_ai_success_desc {
    max-width: 900px;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

/* Left Card */
.gen_ai_case_card {
    background: #fff;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid #000;
}

.gen_ai_case_img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.gen_ai_case_content {
    padding: 22px;
}

.gen_ai_case_content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.gen_ai_case_content p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

/* Right CTA */
.gen_ai_case_cta {
    background: #7b3fe4;
    border-radius: 22px;
    padding: 40px;
    color: #fff;
    position: relative;
}

.gen_ai_case_cta h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.gen_ai_case_cta p {
    font-size: 1rem;
    color: #efe9ff;
    line-height: 1.6;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
    padding-bottom: 60px;
}

/* Buttons */
.gen_ai_cta_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 100%;
}

.gen_ai_btn_outline {
    border: 1.5px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.gen_ai_btn_outline:hover {
    background: #fff;
    color: #9036EB;
}

.gen_ai_btn_dark {
    border-radius: 100px;
    background: linear-gradient(90deg, #00073E 0%, #5F0289 100%);
    color: #fff;
    padding: 12px 24px;

    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}


/* Responsive */
@media (max-width: 768px) {
    .gen_ai_success_title {
        font-size: 1.9rem;
    }

    .gen_ai_case_cta {
        padding: 28px;
    }
}


.gen_ai_industry_section {
    background: #ffffff;
}

.gen_ai_industry_title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}

/* Navigation Buttons */
.gen_ai_slider_nav {
    display: flex;
    gap: 12px;
}

.gen_ai_nav_btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 18px;
    border: 1.5px solid #111;
    background: transparent;
    cursor: pointer;
}

.gen_ai_nav_btn:focus {
    background: radial-gradient(circle at top left, #7a2de2, #2b005b);
    color: #fff;
    border: none;
}

/* .gen_ai_nav_btn.filled {
    background: radial-gradient(circle at top left, #7a2de2, #2b005b);
    color: #fff;
    border: none;
} */

/* Cards */
.gen_ai_industry_card {
    background: #f5f5f5;
    border-radius: 22px;
    padding: 28px;
    height: 100%;
}

.gen_ai_industry_card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 14px;
    margin-bottom: 12px;
}

.gen_ai_industry_card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Icons */
.gen_ai_industry_icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #111;
}

.gen_ai_industry_icon.green {
    background: #ccebbf;
}

.gen_ai_industry_icon.purple {
    background: #e6d6ff;
}

.gen_ai_industry_icon.brown {
    background: #ead3c1;
}

/* Responsive */
@media (max-width: 768px) {
    .gen_ai_industry_title {
        font-size: 1.9rem;
    }
}

.gen_ai_choice_section {
    position: relative;
    padding: 90px 0;
}

/* Grey lower background */
.gen_ai_choice_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: #ededed;
    z-index: 0;
}

.gen_ai_choice_section .container {
    position: relative;
    z-index: 1;
}

/* Content */
.gen_ai_choice_content {
    max-width: 480px;
    padding-top: 80px;
}

.gen_ai_choice_title {
    color: #000;
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 44px */
    letter-spacing: -1.2px;
}

.gen_ai_choice_desc {
    color: #000;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 26px */
    letter-spacing: -0.4px;
}

/* Button */
.gen_ai_choice_btn {
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 40px;
    background: linear-gradient(90deg, #2b005c, #6e2bd6);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gen_ai_choice_btn:hover {
    opacity: 0.9;
    color: #fff;
}

.gen_ai_choice_btn span {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.gen_ai_choice_btn:hover span {
    transform: translateX(6px);
}

/* Image */
.gen_ai_choice_image_wrap {
    border-radius: 26px;
    overflow: hidden;
    margin-left: 40px;
}

.gen_ai_choice_image_wrap img {
    width: 100%;
    height: 495px;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .gen_ai_choice_image_wrap {
        margin-left: 0;
        margin-top: 30px;
    }

    .gen_ai_choice_bg {
        height: 60%;
    }
}

@media (max-width: 768px) {
    .gen_ai_choice_title {
        font-size: 2rem;
    }
}

/* Pagination container (optional spacing tweak) */

.swiper-pagination {
    bottom: 30px !important;
}

/* All bullets */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.35;
}

/* Active bullet */
.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-pagination-bullet {
    transition: opacity 0.3s ease;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
}

#scrollTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1;
    animation: moveUpDown 1s ease-in-out infinite alternate;
}

#scrollTop svg {
    width: 55px;
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
        /* Moves up 20px */
    }
}

.stats-container {
    border: 1px solid #333;
    /* Dark thin border */
    border-radius: 40px;
    /* Large rounded corners */
    background-color: #fff;
}

.stat-number {
    font-weight: 800;
    font-size: 2.5rem;
    /* Adjust based on your preference */
    color: #333;
    margin-bottom: 5px;
}

.stat-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
}

/* Feature Cards on the right */
.feature-card {
    background-color: #f8f9fa;
    /* Light grey */
    padding: 40px;
    border-radius: 25px;
    /* Large smooth corners */
    border: none;
}

.feature-card p {
    margin-bottom: 0;
    color: #333;
    line-height: 1.6;
}

.main-img {
    width: 100%;
    border-radius: 50px;
    /* High radius to match image */
    display: block;
}


.values-section {
    background-color: #e9e9e9;
    /* Light grey background like the image */
}

.value-card {
    border: none;
    border-radius: 30px;
    /* Large rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    /* Subtle hover effect */
}

.value-card h2 {
    font-size: 2rem;
    color: #000;
}

.value-card p {
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Ensure right-side cards are equal height if text varies */
.flex-grow-1 {
    flex: 1;
}

/* Custom Image Styling */
.team-img-wrapper {
    overflow: hidden;
    /* Matches the distinct rounded shape in your image */
    border-radius: 30px;
}

.team-img {
    width: 100%;
    height: 300px;
    /* Adjust height as needed */
    object-fit: cover;
    /* Ensures images don't stretch */
    transition: transform 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
    /* Subtle zoom on hover */
}

/* Typography & Layout */
.team-card h4 {
    font-size: 1.5rem;
    color: #333;
}

.team-card p {
    line-height: 1.6;
    color: #666;
}

/* Link Styling (Bootstrap Icons) */
.team-card i {
    color: #000;
    transition: opacity 0.3s;
}

.team-card i:hover {
    opacity: 0.7;
}

body.custom-cursor-enabled,
body.custom-cursor-enabled a,
body.custom-cursor-enabled button,
body.custom-cursor-enabled input,
body.custom-cursor-enabled textarea,
body.custom-cursor-enabled select,
body.custom-cursor-enabled .btn,
body.custom-cursor-enabled [role="button"] {
    cursor: none !important;
}

.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: #d808ec;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(216, 8, 236, 0.7);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, opacity 0.25s ease;
}

.cursor-ring::after {
    content: attr(data-label);
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
}

body.custom-cursor-enabled.cursor-visible .cursor-dot,
body.custom-cursor-enabled.cursor-visible .cursor-ring {
    opacity: 1;
}

body.custom-cursor-enabled.cursor-hover .cursor-ring {
    width: 54px;
    height: 54px;
    border-color: rgba(216, 8, 236, 0.95);
    background-color: rgba(216, 8, 236, 0.12);
}

body.custom-cursor-enabled.cursor-click .cursor-ring {
    width: 28px;
    height: 28px;
}

body.custom-cursor-enabled.cursor-tab .cursor-dot {
    opacity: 0;
}

body.custom-cursor-enabled.cursor-tab .cursor-ring {
    width: var(--cursor-tab-width, 104px);
    height: 38px;
    border-radius: 12px;
    border-color: rgba(1, 147, 176, 0.95);
    background: rgba(1, 147, 176, 0.18);
    box-shadow: 0 8px 22px rgba(1, 147, 176, 0.22);
}

body.custom-cursor-enabled.cursor-cta .cursor-dot {
    opacity: 0;
}

body.custom-cursor-enabled.cursor-cta .cursor-ring {
    width: var(--cursor-cta-width, 108px);
    height: 42px;
    border-radius: 999px;
    border-color: transparent;
    background: linear-gradient(90deg, rgba(0, 7, 62, 0.95) 0%, rgba(95, 2, 137, 0.95) 100%);
    box-shadow: 0 8px 22px rgba(95, 2, 137, 0.35);
}

body.custom-cursor-enabled.cursor-cta .cursor-ring::after {
    content: attr(data-label);
}

/* Global responsive fixes */
html,
body {
    overflow-x: hidden;
}

img,
video,
svg {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1199px) {

    .hero-section h1,
    .digital-section h1,
    .gen_hero-title,
    .fw-normal {
        font-size: clamp(34px, 4vw, 46px);
        line-height: 1.2;
    }

    .sub-left-heading {
        font-size: clamp(28px, 3vw, 36px);
    }
}

@media (max-width: 991px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .navbar {
        padding: 12px 0;
    }

    .navbar-brand img {
        width: 150px;
        height: auto;
    }

    .navbar-toggler {
        width: 44px;
        height: 44px;
        border-color: rgba(255, 255, 255, 0.35);
        border-radius: 10px;
        background: rgba(9, 10, 17, 0.72);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .navbar-toggler .navbar-toggler-icon {
        width: 22px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        position: relative;
        background-image: none;
        transition: background-color 0.2s ease;
    }

    .navbar-toggler .navbar-toggler-icon::before,
    .navbar-toggler .navbar-toggler-icon::after {
        content: "";
        position: absolute;
        left: 0;
        width: 22px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: transform 0.25s ease, top 0.25s ease;
    }

    .navbar-toggler .navbar-toggler-icon::before {
        top: -7px;
    }

    .navbar-toggler .navbar-toggler-icon::after {
        top: 7px;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-color: transparent;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        top: 0;
        transform: rotate(45deg);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        margin-top: 12px;
        padding: 14px 16px;
        border-radius: 14px;
        background: rgba(9, 10, 17, 0.92);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 18px;
    }

    .navbar .dropdown-menu {
        display: block;
        position: static;
        margin: 0;
        padding: 0 8px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
        box-shadow: none;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transform: translateY(-4px);
        pointer-events: none;
        transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease, margin 0.22s ease, padding 0.22s ease;
    }

    .navbar .dropdown-menu.show {
        max-height: min(72vh, 620px);
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        margin: 6px 0 10px;
        padding: 8px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .navbar .dropdown-item {
        font-size: 14px;
        padding: 10px 12px;
        border-radius: 9px;
    }

    .mega-menu-inner {
        padding: 10px;
    }

    .mega-title {
        margin: 8px 6px 6px;
        font-size: 11px;
    }

    .navbar .dropdown-toggle.show::after {
        transform: rotate(180deg);
    }

    .menu-matrix .matrix-row {
        grid-template-columns: 1fr;
    }

    .menu-matrix .matrix-group {
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 14px;
    }

    .menu-matrix .matrix-sub-items {
        grid-template-columns: 1fr;
    }

    .menu-matrix .matrix-sub-item {
        border-right: 0;
        font-size: 14px;
        padding: 10px 12px;
    }

    .get-touch-btn {
        width: calc(100% - 58px);
        justify-content: center;
        margin-top: 8px;
        padding: 14px 22px;
    }

    .nav-cta-wrap {
        width: 100%;
    }

    .nav-search-btn {
        margin-top: 8px;
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
    }

    .hero-section .figure-img,
    .main-img,
    .gen_ai_choice_image_wrap img {
        height: auto;
        max-height: none;
    }

    .hero-section h1 {
        font-size: clamp(30px, 6vw, 42px);
        line-height: 1.2;
    }

    .hero-section p,
    .digital-section p,
    .gen_hero-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .btn-primary,
    .btn-primary2 {
        padding: 12px 20px;
        font-size: 15px;
    }

    .clutch-box,
    .social-icons {
        margin-top: 2rem !important;
        text-align: left;
    }

    .office-block {
        text-align: left;
    }

    .feature-card {
        padding: 24px;
    }

    #scrollTop {
        right: 14px;
        bottom: 14px;
    }

    #scrollTop svg {
        width: 46px;
    }
}

@media (max-width: 767px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .nav-link {
        font-size: 17px;
    }

    .dropdown-toggle::after {
        width: 10px;
        height: 6px;
    }

    .navbar .dropdown-item {
        font-size: 14px;
        padding: 9px 12px;
    }

    .hero-section h1,
    .digital-section h1,
    .gen_hero-title,
    .fw-normal {
        font-size: clamp(28px, 8vw, 34px);
        line-height: 1.2;
    }

    .single-slider .hero-section {
        min-height: 74vh;
    }

    .single-slider .hero-section figure {
        min-height: 74vh;
    }

    .single-slider .hero-section .figure-img {
        min-height: 74vh;
        object-fit: cover;
        object-position: center;
    }

    .single-slider .hero-section figure::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(9, 10, 17, 0.76) 12%, rgba(9, 10, 17, 0.2) 52%, rgba(9, 10, 17, 0.05) 100%);
        z-index: 1;
    }

    .single-slider .hero-section .container.position-absolute {
        top: auto !important;
        bottom: 22px;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 100%;
        z-index: 2 !important;
        padding-bottom: 46px;
    }

    .single-slider .hero-section .col-lg-8 {
        max-width: 100%;
    }

    .single-slider .hero-section h1 {
        font-size: clamp(27px, 8.4vw, 34px);
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .single-slider .hero-section p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 12px;
        max-width: 96%;
    }

    .single-slider .hero-section h1 br,
    .single-slider .hero-section p br {
        display: none;
    }

    .single-slider .hero-section .btn.btn-primary {
        width: auto;
        min-width: 210px;
        padding: 11px 18px;
    }

    .sub-left-heading {
        font-size: clamp(24px, 7vw, 30px);
    }

    .hero-section p,
    .digital-section p,
    .gen_hero-text,
    .gen_ai_services_desc {
        font-size: 15px;
        line-height: 1.55;
    }

    .gen_hero-section {
        padding-top: 150px;
    }

    .team-img {
        height: 240px;
    }

    .main-img,
    .team-img-wrapper,
    .gen_ai_choice_image_wrap,
    .gen_hero-image,
    .gen_hero-image-wrapper {
        border-radius: 18px;
    }

    .swiper-pagination {
        bottom: 14px !important;
    }
}

@media (max-width: 480px) {
    .navbar-brand img {
        width: 136px;
    }

    .get-touch-btn {
        font-size: 14px;
        padding: 12px 16px;
    }

    .btn-primary,
    .btn-primary2 {
        width: 100%;
        justify-content: center;
    }

    .hero-section h1 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {

    .technology-partners,
    .ai-tech-section,
    .expertise-section,
    .services-section,
    .manage-it-section,
    .modern-stack-section,
    .industry-section,
    .value-roi-section,
    .insights-section,
    .contact-section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .partner-card {
        min-height: 108px;
        height: auto;
        border-radius: 16px;
        padding: 14px;
    }

    .video-wrapper {
        height: 360px;
    }

    .ai-card-content {
        left: 16px;
        right: 16px;
        bottom: 18px;
        max-width: none;
    }

    .ai-card-content h3 {
        font-size: 28px;
        line-height: 1.15;
        margin-bottom: 8px !important;
    }

    .ai-card-content p {
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 8px !important;
    }

    .expertise-card {
        min-height: 220px;
        border-radius: 18px;
    }

    .featured-card {
        padding: 16px;
        gap: 16px;
        border-radius: 16px;
    }

    .featured-img {
        width: 100%;
    }

    .featured-img img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .featured-content h1 {
        font-size: 2.4rem;
        line-height: 1;
    }

    .featured-content h3 {
        font-size: 1.65rem;
        line-height: 1.2;
    }

    .featured-content span {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .featured-content p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .featured-cta {
        position: static;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 8px;
    }

    .featured-cta .btn {
        width: 100%;
    }

    .tech-stack-img {
        max-width: 100%;
    }

    .industry-card {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .industry-card .icon {
        margin-bottom: 10px !important;
    }

    .industry-card_hover,
    .industry-card:hover .industry-card_hover {
        display: block;
        position: static;
        width: 100%;
        height: auto;
        margin-top: 12px;
        padding: 0;
        border-radius: 0;
        background: transparent;
        cursor: default;
    }

    .industry-card_hover h5 {
        color: #090A11;
        font-size: 18px;
        margin-bottom: 6px;
    }

    .industry-card_hover p {
        color: #4A5565;
        font-size: 14px;
        line-height: 1.45;
    }

    .roi-card {
        padding: 22px;
        border-radius: 20px;
    }

    .roi-card h3 {
        font-size: 16px;
        line-height: 1.2;
    }

    .roi-card p {
        font-size: 15px;
        line-height: 1.5;
    }

    .stat-card {
        padding: 18px 12px;
    }

    .stat-card h4 {
        font-size: 28px;
        line-height: 1.1;
    }

    .testimonial-card {
        padding: 26px 20px;
        border-radius: 20px;
    }

    .testimonial-card h4 {
        font-size: 16px;
        line-height: 1.2;
    }

    .testimonial-card p,
    .testimonial-card strong,
    .testimonial-card small {
        font-size: 15px;
        line-height: 1.45;
    }

    .insight-card {
        padding: 12px;
        border-radius: 16px;
    }

    .insight-card h5 a {
        font-size: 18px;
        line-height: 1.35;
    }

    .insight-card small {
        font-size: 13px;
        line-height: 1.35;
    }

    .contact-section h2 {
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.1;
        letter-spacing: -0.03em;
    }

    .contact-section p {
        font-size: 16px;
        line-height: 1.45;
    }

    .contact-card {
        border-radius: 22px;
        padding: 28px 18px;
    }

    .contact-card h4 {
        font-size: 34px;
        line-height: 1.1;
    }

    .contact-card p {
        font-size: 15px;
        line-height: 1.45;
    }

    .form-control {
        height: 48px;
    }

    .form-control::placeholder {
        font-size: 15px;
        line-height: 1.2;
    }

    .newsletter {
        gap: 8px;
    }

    .custominput,
    .custombutton {
        width: auto;
        flex: 1 1 0;
    }

    .footer-section h5 {
        font-size: 28px;
    }

    .footer-title {
        font-size: 18px;
        padding-bottom: 14px;
    }

    .footer-links a {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 767px) {
    .cta-ai {
        border-radius: 18px;
        overflow: hidden;
    }

    .cta-content h2 {
        font-size: 26px;
        line-height: 1.25;
    }

    .cta-gradient h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    .cta-gradient p {
        font-size: 15px;
        line-height: 1.45;
    }

    .cta-ai .btn.btn-primary,
    .cta-gradient .btn.btn-primary,
    .modern-stack-section .btn.btn-primary2,
    .value-roi-section .btn.btn-primary2,
    .featured-cta .btn.btn-primary {
        width: auto !important;
        min-width: 190px;
        max-width: 100%;
        display: inline-flex;
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .cta-ai .btn.btn-primary,
    .cta-gradient .btn.btn-primary,
    .modern-stack-section .btn.btn-primary2,
    .value-roi-section .btn.btn-primary2,
    .featured-cta .btn.btn-primary {
        min-width: 0;
        width: auto !important;
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Final mobile CTA sizing override */
@media (max-width: 767px) {

    .get-touch-btn,
    .btn.btn-primary,
    .btn.btn-primary2,
    .see-all-btn {
        width: auto !important;
        min-width: 0 !important;
        max-width: 100%;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        padding: 10px 16px !important;
        font-size: 14px !important;
        border-radius: 999px;
    }

    .featured-cta {
        width: auto !important;
        margin-top: 10px;
    }

    .featured-cta .btn {
        width: auto !important;
    }
}

@media (max-width: 480px) {

    .get-touch-btn,
    .btn.btn-primary,
    .btn.btn-primary2,
    .see-all-btn {
        padding: 9px 14px !important;
        font-size: 13px !important;
    }
}

/* Services mega menu redesign */
.mega-menu-services {
    overflow: hidden;
    background: radial-gradient(120% 130% at 0% 0%, rgba(53, 84, 109, 0.38) 0%, rgba(17, 21, 31, 0.98) 35%, rgba(12, 14, 20, 0.98) 100%);
}

.services-mega-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr) 340px;
    min-height: 520px;
}

.services-category-panel {
    padding: 24px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.services-category {
    display: block;
    text-decoration: none;
    color: rgba(241, 245, 255, 0.86);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.services-category:hover,
.services-category:focus,
.services-category.is-active {
    background: rgba(0, 0, 0, 0.34);
    color: #ffd480;
}

.services-links-panel {
    position: relative;
    padding: 28px 22px;
}

.services-link-group {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 28px;
}

.services-link-group.is-active {
    display: grid;
}

.services-link {
    color: #f5f7ff;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.services-link::after {
    content: "\2197";
    color: rgba(245, 247, 255, 0.9);
    font-size: 14px;
    line-height: 1;
}

.services-link:hover,
.services-link:focus {
    color: #ffd480;
    background: transparent;
    transform: none;
}

.services-link:hover::after,
.services-link:focus::after {
    color: #ffd480;
}

.services-case-panel {
    padding: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.services-case-label {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 16px;
}

.services-case-card {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.88);
}

.services-case-card img {
    width: 100%;
    height: 215px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 16px;
}

.services-case-card h5 {
    font-size: 22px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 12px;
}

.services-case-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(236, 242, 255, 0.76);
}

@media (max-width: 1199.98px) {
    .services-mega-layout {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .services-category-panel,
    .services-case-panel {
        border: 0;
    }

    .services-category-panel {
        padding: 14px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .services-category {
        font-size: 15px;
        margin: 0;
        padding: 10px 12px;
    }

    .services-links-panel {
        padding: 10px 14px 18px;
    }

    .services-link-group,
    .services-link-group.is-active {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .services-link {
        font-size: 14px;
        padding: 8px 0;
    }

    .services-link::after {
        font-size: 16px;
    }

    .services-case-panel {
        display: none;
    }
}

/* Align AI mega menu with Services mega menu layout */
.mega-menu-ai {
    width: min(1200px, calc(100vw - 36px));
    max-width: 1200px;
    padding: 0;
}

.mega-menu-ai .services-mega-layout {
    min-height: 480px;
}

.mega-menu-industries {
    width: min(1000px, calc(100vw - 36px));
    max-width: 1000px;
    padding: 14px;
    border: 0 !important;
    border-bottom: 0 !important;
    background: radial-gradient(120% 130% at 0% 0%, rgba(53, 84, 109, 0.38) 0%, rgba(17, 21, 31, 0.98) 35%, rgba(12, 14, 20, 0.98) 100%);
    overflow: hidden;
}

.industries-simple-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
}

.industries-simple-link {
    color: rgba(241, 245, 255, 0.92);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 0;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.industries-simple-link::after {
    content: "\2197";
    font-size: 14px;
    line-height: 1;
    color: rgba(241, 245, 255, 0.9);
}

.industries-simple-link:hover,
.industries-simple-link:focus {
    color: #ffd480;
    background: rgba(0, 0, 0, 0.34);
    transform: none !important;
}

.industries-simple-link:hover::after,
.industries-simple-link:focus::after {
    color: #ffd480;
}

@media (max-width: 767px) {
    .industries-simple-grid {
        grid-template-columns: 1fr;
    }
}

/* Fix mega menu middle-column readability */
.services-link-group {
    grid-template-columns: 1fr;
    gap: 6px;
}

.services-link {
    white-space: normal;
    align-items: flex-start;
}






/* Separate alignment: mega menu and regular dropdown */
@media (min-width: 992px) {
    .navbar .mega-dropdown>.dropdown-menu {
        top: calc(100% + 18px) !important;
    }

    .navbar .mega-dropdown>.mega-menu {
        top: calc(100% + 0px) !important;
    }


    .navbar .mega-dropdown>.dropdown-menu.show {
        transform: translate(-50%, 0) scale(1) !important;
    }

    .navbar .nav-dropdown-regular>.dropdown-menu {
        top: calc(100% + 18px) !important;
        left: 0 !important;
        margin-top: 0 !important;
    }

    .navbar .nav-dropdown-regular>.dropdown-menu.show {
        transform: translateY(0) scale(1) !important;
    }
}



@media (max-width: 991px) {
    .nav-item.has-mega .mega-menu {
        position: static !important;
        width: 100% !important;
        max-height: 0;
        overflow: hidden;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: max-height .35s ease;
        border-radius: 14px;
        margin-top: 8px;
    }

    .nav-item.has-mega.is-open .mega-menu {
        max-height: 1200px;
        /* enough for content */
    }

    .mega-menu .mega-left-col .mega-tab {
        cursor: pointer;
    }

    .mega-menu .mega-mid-col {
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }

    .mega-menu .mega-tab.is-active+.mega-mid-col {
        max-height: 600px;
    }

    .mega-menu .mega-right-col {
        margin-top: 10px;
    }
}


.mega-menu-industries {
    max-width: 500px !important;
}
