* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Urbanist", sans-serif;
    background: #f7f7f7;
    overflow-x: hidden;
}

/* Hero */

.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
    background: white;
}

/* LEFT CONTENT */

.hero-left {
    width: 60%;
    display: flex;
    align-items: center;
    padding: 0 80px;
    position: relative;
    z-index: 5;
    background: linear-gradient(
        to right,
        #fff 65%,
        rgba(255, 255, 255, 0.85) 85%,
        rgba(255, 255, 255, 0) 100%
    );
}

.content {
    max-width: 900px;
}

.small-title {
    font-size: 28px;
    font-weight: 700;
    color: #6d28ff;
    margin-bottom: 10px;
}

.main-title {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 700;
    color: #151515;
    margin-bottom: 25px;
}

.main-title span {
    display: block;
    color: #6d28ff;
}

.desc {
    font-size: 17px;
    line-height: 1;
    color: #666;
    max-width: 700px;
    margin-bottom: 35px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 30px;
    border-radius: 10px;
    background: linear-gradient(135deg, #7a3cff, #5f00ff);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 15px 35px rgba(111, 0, 255, 0.25);
}

.hero-btn:hover {
    transform: translateY(-3px);
}

/* RIGHT SIDE */

.hero-right {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* VIDEO */

.hero-video {
    position: absolute;
    width: 110%;
    height: 100%;
    top: 5%;
    /* left: -5%; */
    object-fit: unset;
    /* filter: brightness(0.92) contrast(1.08) saturate(0.95);  */
    /* transform: scale(1.08); */
    /* animation: slowZoom 12s ease-in-out infinite alternate; */
}

/* OVERLAY */

.hero-right::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to left,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.25),
        white 99%
    );
    z-index: 2;
}

/* GLASS EFFECT START*/

.glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: #7b2cff;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    left: -200px;
    bottom: -200px;
    z-index: 1;
}

/* FLOATING ELEMENT START*/

.floating-card {
    position: absolute;
    bottom: 40px;
    left: 25px;
    padding: 18px 25px;
    background: #88c9b8;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 18px;
    z-index: 5;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    animation: float 4s ease-in-out infinite;
}

.floating-card h4 {
    font-size: 15px;
    margin-bottom: 5px;
    color: #111;
}

.floating-card p {
    font-size: 13px;
    color: #666;
}

.secondSwiper .swiper-button-next:after,
.secondSwiper .swiper-button-prev,
.secondSwiper .swiper-button-prev:after {
    color: #000;
    font-size: 15px !important;
    font-weight: 600;
}

.secondSwiper .swiper-button-next,
.secondSwiper .swiper-button-prev {
    border: 1px solid #dcdcdc;
    padding: 5px 20px;
    border-radius: 100px;
}

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

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.card-three-grp {
    border: 1px solid #874aef;
    padding: 15px;
    border-radius: 8px;
}

.card-three-grp h4,
.footer-list a:hover {
    color: var(--primary-color);
}

.card-three-grp p {
    line-height: 28px;
}

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

.bg-swiperCard {
    background-color: #dfd8ed;
}

.bg-btn-primary {
    background-color: #874aef;
}

.glass {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: fit-content;
    margin: auto;
    padding: 2px 38px;
}

.tech-h {
    height: 400px;
    overflow-y: auto;
    display: block;
}

.tech-h::-webkit-scrollbar {
    width: 4px;
}

.tech-h::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

.tech-h::-webkit-scrollbar-thumb {
    background: #874aef;
    border-radius: 10px;
}

.tech-h::-webkit-scrollbar-thumb:hover {
    background: #fff;
}

.tech-h .nav-link.active {
    background-color: #ba92ff !important;
    color: black;
}

.tech-h .nav-link:not(.active) {
    background-color: #dfd8ed !important;
    color: black;
}

/* .custom-paracolor {
    color: #282828;
} */

.fs-14 {
    font-size: 14px;
}
/* ANIMATION */

@keyframes slowZoom {
    0% {
        transform: scale(1.05) translateY(0px);
    }

    100% {
        transform: scale(1.12) translateY(-10px);
    }
}

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

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Sankar UI*/

/* sankar ui development - 25/05/2026 */

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 600;
    /* margin-bottom: 50px; */
    color: #222;
}

.section-head {
    font-size: 38px;
    font-weight: 600;
    /* margin-bottom: 50px; */
    color: #222;
}

.compilance-box {
    background-image: url("/assets/img/Ping AI Landing pageAsset/our-compilance-banner.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.compliance-small {
    border: solid 1px black;
    border-radius: 10px;
    background-color: white;
}

.compliance-small:hover {
    border: solid 1px rgb(255, 255, 255);
    border-radius: 10px;
    background-color: #ba92ff;
}

.ai-section {
    padding: 70px 0;
}

.custom-tabs {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.custom-tabs .nav-link {
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    background: #fff;
    transition: 0.3s ease;
    width: 100%;
    text-align: center;
}

.custom-tabs .nav-link:hover {
    background: #f0ebff;
    color: #6b2dff;
}

.custom-tabs .nav-link.active {
    background: linear-gradient(135deg, #7a3cff, #5f00ff);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(123, 47, 247, 0.2);
}

.tab-content-box h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.tab-content-box p {
    font-size: 16px;
    line-height: 1.4;
    color: #666;
    margin-bottom: 30px;
}

.tab-image img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
}

/* tech stack ui */

.tech-stack-section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    font-size: 46px;
    font-weight: 700;
    color: #111;
    /* margin-bottom: 18px; */
}

.section-title span {
    color: #7b2ff7;
}

.section-description {
    text-align: center;
    max-width: 760px;
    margin: auto;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 45px;
}

.ai-tech-tabs {
    justify-content: center;
    gap: 10px;
    margin-bottom: 55px;
    flex-wrap: wrap;
}

.ai-tech-tabs .nav-link {
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    color: #222;
    padding: 12px 22px;
    background: #fff;
    font-size: 15px;
    transition: 0.3s ease;
}

.ai-tech-tabs .nav-link.active {
    background: #7b2ff7;
    color: #fff;
    border-color: #7b2ff7;
}

.stack-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    height: 100%;
}

.stack-card:hover {
    transform: translateY(-6px);
}

.stack-logo {
    width: 75px;
    height: 75px;
    object-fit: contain;
    margin-bottom: 18px;
}

.stack-name {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    margin: 0;
}

/* why choose ui */

.why-choose-section {
    padding: 90px 0;
    position: relative;
}

.section-title {
    font-size: 52px;
    font-weight: 700;
    text-align: center;
    color: #111;
    /* margin-bottom: 40px; */
    line-height: 1.3;
}

.section-title span {
    color: #7b2ff7;
}

.choose-content {
    padding-right: 40px;
}

.choose-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 40px;
}

.choose-image {
    text-align: center;
}

.choose-image img {
    width: 100%;
    max-width: 580px;
    object-fit: contain;
    animation: floatImage 4s ease-in-out infinite;
}

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

    50% {
        transform: translateY(-12px);
    }

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

#about .custom-card {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    cursor: pointer;
}

/* Image */
#about .custom-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

/* Top Left Badge */
#about .card-badge {
    position: absolute;
    top: 25px;
    left: 25px;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);

    color: #fff;
    font-size: 32px;
    font-weight: 700;

    padding: 12px 22px;
    border-radius: 20px;

    z-index: 3;

    transition: 0.5s ease;
}

/* Content Box */
#about .overlay-content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;

    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);

    color: #fff;

    padding: 25px;
    border-radius: 20px;

    opacity: 0;
    transform: translateY(40px);

    transition: 0.5s ease;

    z-index: 2;
}

#about .overlay-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

#about .overlay-content p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Hover Effects */
#about .custom-card:hover .overlay-content {
    opacity: 1;
    transform: translateY(0);
}

#about .custom-card:hover .card-img {
    transform: scale(1.05);
}

/* Badge Animation */
#about .custom-card:hover .card-badge {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

/* Services */

.ai-services-wrapper {
    padding-top: 80px;
    padding-bottom: 50px;
}

.ai-service-box {
    position: sticky;
    top: 180px;
    /* height: 50vh; */
    /* max-width: 900px; */
    width: 80%;
    margin: 0 auto 50px;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ai-service-content {
    position: relative;
    height: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(to bottom right, #ffffff, #f3ecff);
}

.ai-service-content::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: -20px;
    width: 400px;
    height: 220px;
    /* background: url("https://images.unsplash.com/photo-1633419461186-7d40a38105ec?q=80&w=1200&auto=format&fit=crop")
          no-repeat center;
        background-size: cover; */
    opacity: 0.12;
    pointer-events: none;
}

.ai-service-title {
    font-size: 38px;
    font-weight: 700;
    color: #111;
    position: relative;
    z-index: 2;
}

.ai-service-text {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    max-width: 470px;
    position: relative;
    z-index: 2;
}

.ai-service-btn {
    width: max-content;
    border: none;
    background: #6c2bff;
    color: #fff;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    position: relative;
    z-index: 2;
}

.ai-service-btn:hover {
    background: #5717e8;
    color: #fff;
}

/* .ai-service-image-wrap {
    height: 100%;
    overflow: hidden;
    background: #140014;
} */

.ai-service-image {
    width: 100%;
    /* height: 75%; */
    object-fit: cover;
    display: block;
}

.service-two .ai-service-image-wrap {
    background: #07121f;
}

.service-three .ai-service-image-wrap {
    background: #1b001f;
}

.service-four .ai-service-image-wrap {
    background: #001a17;
}

/*sankar UI */
.section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

.polkadot-banner {
    background-image: url("https://firebee.sgp1.cdn.digitaloceanspaces.com/breedcoins_11/assets/img/polkadoblockchain_development_company/header_bg.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.enterprise-banner {
    background-image: url("/assets/img/enterprise-generative-ai-development-guide/banner.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.aiindustries-banner {
    background-image: url("/assets/img/AIforindustries/Banner.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.aimobileappdevelopment-banner {
    background-image: url("/assets/img/AImobileappdevelopment/Banner.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.aiservices-banner {
    background-image: url("/assets/img/Ai-Services/AI-Services-banner.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.aiconsultservices-banner {
    background-image: url("/assets/img/aiconsultservice/Banner.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.aiautomation-banner {
    background-image: url("/assets/img/aiautomation/AI Automationbanner.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;

    display: flex;
    align-items: center;
}
.customai-banner {
    background-image: url("/assets/img/customaidevelopment/Banner.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;

    display: flex;
    align-items: center;
}

.banner-content {
    text-align: left;
}

.banner-content h1 {
    font-size: 56px;
    line-height: 68px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 25px;
    color: #ffffff;
}

.banner-content p {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 30px;
    color: #eeeeee;
}

.theme-btn-1 {
    background: #7220ff;
    color: #fff;
    border: none;
    padding: 14px 34px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.theme-btn-1:hover {
    background: #5717e8;
    color: #fff;
}

.banner-image img {
    max-width: 100%;
}

.service-card {
    border: 1px solid #e6e6e6;
    border-radius: 18px;
    padding: 25px;
    height: 100%;
    background: #fff;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: #7a31ee;
    color: #fff;
    border: none;
}

.service-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #6c2bff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-icon img {
    width: 24px;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-text {
    font-size: 14px;
    line-height: 24px;
    opacity: 0.85;
}

.service-card.active .service-text {
    opacity: 0.9;
}

.title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.title span,
.accordion-button {
    color: #6f2cff;
}

.left-box {
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 18px;
    padding: 24px;
    height: 100%;
}

.left-box h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 25px;
}

.nav-pills-tab {
    height: 420px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column !important;
    flex-wrap: nowrap;
    gap: 12px;
    padding-right: 6px;
    scroll-behavior: smooth;
}

.nav-pills-tab::-webkit-scrollbar {
    width: 8px;
}

.nav-pills-tab::-webkit-scrollbar-track {
    background: #ececec;
    border-radius: 20px;
}

.nav-pills-tab::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7b2ff7, #5f2cff);
    border-radius: 20px;
}

.nav-pills-tab::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #5f2cff, #7b2ff7);
}

.nav-pills-tab .nav-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-radius: 12px;
    background: #fff;
    color: #222;
    font-weight: 500;
    border: 1px solid #d9d9d9;
    transition: 0.4s;
    flex-shrink: 0;
}

.nav-pills .nav-link:hover {
    background: linear-gradient(90deg, #7b2ff7, #5f2cff);
    color: #ffffff !important;
}

.nav-pills-tab .nav-link.active {
    background: linear-gradient(90deg, #7b2ff7, #5f2cff);
    color: #fff;
    border-color: transparent;
}

.scroll-box {
    background-color: #dfd8ed;
}

.arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #cfcfcf;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.4s;
    transform: rotate(0deg);
    flex-shrink: 0;
}

.nav-link.active .arrow {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: rotate(45deg);
}

.tab-card {
    background: #f8f4ff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    animation: fade 0.5s ease;
}

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

.content {
    padding: 25px;
}

.content h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.content p {
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.tab-pane.fade {
    transition: 0.4s;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* contact form css with responsive design */

.contact-section {
    padding: 70px 0;
}

.left-image {
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.form-box {
    background: #eef2ef;
    border: 1px solid #cfcfcf;
    border-radius: 14px;
    padding: 35px;
    height: 100%;
}

.form-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 35px;
    color: #111;
}

.form-label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-control {
    height: 50px;
    border-radius: 6px;
    border: 1px solid #d7d7d7;
    font-size: 14px;
    box-shadow: none !important;
}

textarea.form-control {
    height: 120px;
    resize: none;
    padding-top: 14px;
}

.phone-group {
    display: flex;
    gap: 10px;
}

.country-code {
    width: 95px;
    height: 50px;
    border: 1px solid #d7d7d7;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.bottom-text {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-top: 22px;
    line-height: 1.8;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-btn {
    min-width: 160px;
    height: 46px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.4s;
}

.whatsapp-btn {
    background: #bfe0b7;
    border: 1px solid #88c97d;
    color: #1f1f1f;
}

.telegram-btn {
    background: #b8d8eb;
    border: 1px solid #7ab6d9;
    color: #1f1f1f;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.security-card {
    position: relative;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 16px;
    padding: 28px;
    overflow: hidden;
    height: 100%;
    transition: 0.3s ease;
}

/* IMAGE */
.security-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;

    background-image: url("/assets/img/Card-1.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;

    pointer-events: none;
    z-index: 0;
}

.security-card > * {
    position: relative;
    z-index: 2;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* .icon-box {
    width: 50px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #6f42ff;
    border: 1px solid #ddd;
    font-size: 20px;
    margin-bottom: 18px;
    transition: 0.3s ease;
} */

.security-card:hover .icon-box {
    background: #6f42ff;
    color: #fff;
    border-color: #6f42ff;
}

.card-title {
    color: #6f42ff;
    font-weight: 600;
    margin-bottom: 14px;
}

.card-text {
    color: #000;
    font-size: 14px;
    line-height: 1.8;
}

.card-text-1 {
    color: #0e0d0d;
    font-size: 14px;
    line-height: 1.8;
}

.card-body {
    background-color: #804fd3;
    border-radius: 0 0 10px 10px;
}

.card-body-1 {
    background-color: #1b5747;
    padding: 10px;
    border-radius: 0 0 10px 10px;
}

.project-count {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 2;
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 16px;
    font-size: 40px;
    font-weight: 700;
    color: #6f2cff;
}

.project-count span {
    font-size: 20px;
    font-weight: 500;
    color: #1a1919;
    line-height: 1;
}
.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    /* margin-bottom: 70px; */
    color: #111;
}

.section-title span {
    color: #6f2cff;
}

.revenue-card {
    position: relative;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 18px;
    padding: 32px;
    overflow: hidden;
    height: 100%;
    transition: 0.4s;
}

.revenue-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #c48dff 0%, transparent 70%);
    opacity: 0.45;
}

.revenue-card:hover {
    transform: translateY(-8px);
    border-color: #6f2cff;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 10px;
    border: 1px solid #d8d8d8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    background: #fff;
    position: relative;
    z-index: 2;
}

.icon-box svg {
    width: 18px;
    height: 18px;
    stroke: #111;
}

.revenue-card h4 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 18px;
    color: #6f2cff;
    position: relative;
    z-index: 2;
}

.revenue-card p {
    font-size: 14px;
    line-height: 1.9;
    color: #555;
    margin: 0;
    position: relative;
    z-index: 2;
}

.center-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-image img {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    /* height: 100%; */
    min-height: 400px;
}

.left-cards,
.right-cards {
    display: flex;
    flex-direction: column;
    gap: 34px;
    height: 100%;
}

.process-section {
    position: relative;
    background: #f7f4fb;
    overflow: hidden;
}

.process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("Rectangle 34624297.png") center/cover no-repeat;
    opacity: 1;
}

.process-wrapper {
    position: relative;
    z-index: 2;
}

.process-card {
    position: relative;
    border: 1.5px solid #8a3dff;
    border-radius: 0px 100px 100px 0px;
    padding: 20px 100px 20px 20px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    height: 100%;
    transition: 0.4s;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(111, 44, 255, 0.12);
}

.process-card h3 {
    font-size: 23px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 14px;
    line-height: 1.4;
}

.process-card p {
    font-size: 14px;
    line-height: 1.9;
    color: #555;
    margin: 0;
}

.step-number {
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 1.5px solid #8a3dff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 600;
    color: #111;
    background: #f8f4ff;
}

.row-gap-custom {
    row-gap: 50px;
}

/* swipper button css in button */

/* today ui work - 27-05-2026 */

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 0px !important;
    right: 0px !important;
}
.swiper-button-next,
.swiper-button-prev {
    position: static !important;
    margin-top: 0px !important;
}

.ai-services-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
    height: 100%;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.ai-services-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #6c3cff;
    transition: 0.4s ease;
}

.ai-services-box:hover::before {
    width: 100%;
}

.ai-services-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.ai-icon-circle {
    width: 80px;
    height: 80px;
    background: #6c3cff;
    color: #fff;
    padding: 10px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.ai-services-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

.ai-services-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}
.accordion-button:not(.collapsed) {
    background: none !important;
    color: #8a3dff !important;
    border: none;
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238a3dff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: #8a3dff !important;
}

.iti {
    width: 100%;
}

.iti input {
    width: 100% !important;
}

.card-text {
    color: #000;
}

.section__fixed-icons {
    position: fixed;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.section__fixed-right {
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.ul__social-icons,
.section__fixed-right ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
}

.ul__social-icons li,
.section__fixed-right ul li {
    list-style: none;
}

.ul__social-icons li a,
.section__fixed-right ul li a {
    width: 52px;
    height: 52px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ul__social-icons li a:hover,
.section__fixed-right ul li a:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(114, 32, 255, 0.18);
}

.ul__social-icons li a img,
.section__fixed-right ul li a img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .section__fixed-icons {
        left: 10px;
    }

    .section__fixed-right {
        right: 10px;
    }

    .ul__social-icons li a,
    .section__fixed-right ul li a {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .ul__social-icons li a img,
    .section__fixed-right ul li a img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 576px) {
    .section__fixed-icons {
        left: 8px;
        bottom: 15px;
        top: auto;
        transform: none;
    }

    .section__fixed-right {
        right: 8px;
        bottom: 15px;
        top: auto;
        transform: none;
    }

    .ul__social-icons,
    .section__fixed-right ul {
        gap: 10px;
    }

    .ul__social-icons li a,
    .section__fixed-right ul li a {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .ul__social-icons li a img,
    .section__fixed-right ul li a img {
        width: 20px;
        height: 20px;
    }
}

.ai-saas {
    background-image: url("/assets/img/ai-saas/banner.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.AI-Copilot {
    background-image: url("/assets/img/AI Copilot Development/Banner (1).png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

a {
    text-decoration: none;
}

.navbar-custom {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 80px;
    background: #efe7fc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    transition: 0.4s ease;
    z-index: 999;
}

.navbar-custom.scrolled {
    top: 20px;
    width: 88%;
    border-radius: 22px;
    padding: 0 30px;
    backdrop-filter: blur(10px);
    background: rgba(239, 231, 252, 0.92);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.logo img {
    width: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links li {
    position: relative;
}

.nav-main-link,
.dropdown-btn,
.nav-links li a {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    transition: 0.3s;
}

.nav-item-dropdown {
    height: 80px;
    display: flex;
    align-items: center;
}

.dropdown-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
    position: relative;
}

.dropdown-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 18px;
    width: 0;
    height: 2px;
    background: #7220ff;
    border-radius: 10px;
    transition: 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-wrapper::after,
.nav-item-dropdown.active .dropdown-wrapper::after {
    width: 100%;
}

.nav-item-dropdown:hover .nav-main-link,
.nav-item-dropdown:hover .dropdown-btn,
.nav-item-dropdown.active .nav-main-link,
.nav-item-dropdown.active .dropdown-btn {
    color: #7220ff;
}

.dropdown-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    padding: 0;
}

.arrow-icon {
    transition: 0.3s;
}

.nav-item-dropdown.active .arrow-icon {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 950px;
    max-width: 90vw;
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    z-index: 999;
}

.nav-item-dropdown:first-child .submenu {
    left: 0;
    transform: translateY(20px);
}

.nav-item-dropdown:nth-child(2) .submenu {
    left: 50%;
    transform: translateX(-50%) translateY(20px);
}

.nav-item-dropdown:hover .submenu,
.nav-item-dropdown.active .submenu {
    opacity: 1;
    visibility: visible;
}

.nav-item-dropdown:first-child:hover .submenu,
.nav-item-dropdown:first-child.active .submenu {
    transform: translateY(10px);
}

.nav-item-dropdown:nth-child(2):hover .submenu,
.nav-item-dropdown:nth-child(2).active .submenu {
    transform: translateX(-50%) translateY(10px);
}

.submenu li a {
    display: block;
    padding: 14px 16px;
    background: #faf8ff;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.4;
    color: #444;
    transition: 0.3s;
    height: 100%;
}

.submenu li a:hover {
    background: #f1e7ff;
    color: #7220ff;
    transform: translateY(-2px);
}

.btn-stroke {
    border: 1.5px solid #7220ff;
    padding: 5px 5px;
    border-radius: 5px;
}

.btn-violet {
    background: #7220ff;
    padding: 12px 22px;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    transition: 0.3s;
    box-shadow: inset 8px 4px 26px rgba(255, 255, 255, 0.18);
}

.btn-violet:hover {
    transform: translateY(-2px);
}

.menu-icon {
    font-size: 32px;
    color: #000;
}

.offcanvas {
    background: #fff;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}

.mobile-links li a {
    font-size: 17px;
    font-weight: 500;
    color: #333;
}

.mobile-dropdown {
    background: #f8f4ff;
    border-radius: 16px;
    padding: 16px;
}

.mobile-dropdown-btn {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 600;
    color: #222;
}

.mobile-dropdown-btn i {
    transition: 0.3s;
}

.mobile-submenu {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: 0.4s ease;
}

.mobile-submenu-inner {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-submenu a {
    display: block;
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    margin-top: 10px;
    font-size: 15px;
}

.mobile-dropdown.active .mobile-submenu {
    grid-template-rows: 1fr;
    margin-top: 15px;
}

.mobile-dropdown.active .mobile-dropdown-btn i {
    transform: rotate(180deg);
}

.cursor-pointer {
    cursor: pointer;
}

.contact-dropdown {
    position: relative;
}

.contact-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1100;
}

.contact-dropdown:hover .dropdown-menu {
    display: block;
}

.link-text {
    line-height: 3;
}

.card-three-grp .d-flex .img-fluid {
    height: 150px !important;
}
