/* Googlefont Poppins CDN Link */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}


/* Headings / Titles */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: sans-serif;
    letter-spacing: 1px;
    /* Optional: looks good with Agency FB */
    margin-bottom: 10px;
    font-weight: 700 !important;
}

h1 {
    font-size: 5rem !important;
    color: #6a4bff !important;
}


/* Body text */

body {
    font-family: "Roboto", Arial, sans-serif;
    margin: 0;
    background: #0f0f0f;
    color: #eaeaea;
}


/* Prevent horizontal scroll */

body,
html {
    overflow-x: hidden;
}

body {
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 108px;
    background: linear-gradient(90deg, black, #0f0f10);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

nav .navbar {
    height: 100%;
    max-width: 1250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    /* background: red; */
    padding: 0 2px;
}

nav .navbar .links li a:hover {
    color: #fb5720;
}

.navbar .logo a {
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.navbar .logo img {
    width: 200px;
}

nav .navbar .nav-links {
    line-height: 108px;
    height: 100%;
    width: 55%;
}

nav .navbar .links {
    display: flex;
}

nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
}

nav .navbar .links li a {
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
    transform: rotate(180deg);
}

nav .navbar .links li .arrow {
    height: 100%;
    width: 22px;
    line-height: 108px;
    text-align: center;
    display: inline-block;
    color: #fff;
    transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
    position: absolute;
    top: 70px;
    left: 0;
    line-height: 40px;
    background: #131840;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
    padding-left: 0px;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
    display: block;
}

.navbar .links li .sub-menu li {
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.navbar .links li .sub-menu .more-arrow {
    line-height: 40px;
}

.navbar .links li .htmlCss-more-sub-menu {
    /* line-height: 40px; */
}

.navbar .links li .sub-menu .more-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
    display: block;
}

.navbar .search-box {
    position: relative;
    /* height: 40px; */
    width: 26%;
}

.navbar .search-box button {
    font-size: 14px;
    padding: 10px 26px;
}

.navbar .search-box i {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box a {
    color: transparent;
}

.navbar .search-box .input-box {
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    height: 60px;
    width: 300px;
    background: #3E8DA8;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.navbar.showInput .search-box .input-box {
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #3E8DA8;
}

.search-box .input-box::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: #3E8DA8;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}

.search-box .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .bx-menu {
    display: none;
}

@media (max-width:920px) {
    nav .navbar {
        max-width: 100%;
        padding: 0 25px;
        flex-direction: row-reverse;
    }
    nav .navbar .logo a {
        font-size: 27px;
    }
    nav .navbar .links li {
        padding: 0 10px;
        white-space: nowrap;
    }
    nav .navbar .links li a {
        font-size: 15px;
    }
}

@media (max-width:800px) {
    nav {
        /* position: relative; */
    }
    .navbar .bx-menu {
        display: block;
    }
    nav .navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 270px;
        width: 100%;
        background: #0e1521;
        line-height: 40px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }
    .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .sidebar-logo .logo-name {
        font-size: 25px;
        color: #fff;
    }
    .sidebar-logo i,
    .navbar .bx-menu {
        font-size: 25px;
        color: #fff;
        background: #fc6500;
    }
    nav .navbar .links {
        display: block;
        margin-top: 20px;
    }
    nav .navbar .links li .arrow {
        line-height: 40px;
    }
    nav .navbar .links li {
        display: block;
    }
    nav .navbar .links li .sub-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
    }
    nav .navbar .links li .sub-menu li {
        border-bottom: none;
    }
    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
        position: relative;
        left: 0;
    }
    .navbar .links li .sub-menu .more-sub-menu li {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .links li:hover .htmlcss-arrow,
    .links li:hover .js-arrow {
        transform: rotate(0deg);
    }
    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
    }
    .navbar .links li .sub-menu .more span {
        /* background: red; */
        display: flex;
        align-items: center;
        /* justify-content: space-between; */
    }
    .links li .sub-menu .more:hover .more-sub-menu {
        display: none;
    }
    nav .navbar .links li:hover .htmlCss-sub-menu,
    nav .navbar .links li:hover .js-sub-menu {
        /* display: none; */
    }
    .navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show2 .links .more .more-sub-menu {
        display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }
    .navbar .nav-links.show2 .links .more-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width:370px) {
    nav .navbar .nav-links {
        max-width: 360px;
    }
}


/* MAin Body Css  */

section {
    position: relative;
    color: #fff;
    background-color: #0f0f10;
}

section h2 {
    font-size: 3.5rem;
}


/* Added css for text animation  */

button {
    background: linear-gradient(45deg, #9e50b0, #4f45c5);
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px !important;
    border: none;
}


/* Footer Css  */

.di-footer {
    background: linear-gradient(135deg, #0b0b0b 0%, #2a0b3d 60%, #3b0f4a 100%);
    clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 100%);
    padding-top: 100px;
    margin-top: -240px;
    color: #c5c2c9;
}

.di-footer h2 {
    font-family: system-ui;
    font-size: 40px;
}

.di-footer .small {
    font-size: 18px;
}

.di-footer .list-unstyled {
    line-height: 34px;
}

.di-footer button {
    background: #fecf00;
    padding: 8px 30px;
    color: #201a00;
}

.footer-link {
    color: #c5c2c9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffc107;
}

.di-footer input.form-control {
    background: #ffffff;
    border: none;
    height: 46px;
}

.di-footer hr {
    opacity: 0.3;
}


/* Typing effect starts */

.typewriter-title {
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    letter-spacing: 0px;
    /* border-right: 0px solid #fff; */
}


/* Animation class (added via JS) */

.typewriter-title.animate {
    animation: typing 3s steps(var(--chars)) forwards, blink 0.5s step-end infinite 3s;
}


/* Typing animation */

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: calc(var(--chars) * 1ch);
    }
}


/* Cursor blink */

@keyframes blink {
    50% {
        border-color: transparent;
    }
}


/* Typing effect ends */


/* From Uiverse.io by vinodjangid07 */

.Btn {
    width: 170px;
    height: 50px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(to right, #f5491f, #ffd277, #f5491f, #f5491f, #ffd277, #f5491f);
    background-size: 250%;
    background-position: left;
    color: #ffd277;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-duration: 1s;
    overflow: hidden;
}

.Btn::before {
    position: absolute;
    content: "Get a Quote";
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 97%;
    height: 90%;
    border-radius: 30px;
    transition-duration: 1s;
    background-color: #6a4bff;
    background-size: 200%;
}

.Btn:hover {
    background-position: right;
    transition-duration: 1s;
}

.Btn:hover::before {
    background-position: right;
    transition-duration: 1s;
}

.Btn:active {
    transform: scale(0.95);
}

#see-works::before {
    content: "See How It Works" !important;
}

.hero-sect {
    margin-top: 108px;
    padding: 5% 0%;
}

.hero-sect i {
    font-size: 30px;
    padding-left: 20px;
    margin-right: 10px;
    color: #fff;
}

p {
    font-size: 20px;
    letter-spacing: 1px;
}


/* Section 3 Css  */

.ai-stats-section {
    background: radial-gradient(circle at top, #1e1530, #0b0615);
    color: #fff;
    overflow: hidden;
}


/* VIEWPORT */

.slider-viewport {
    width: 100%;
    overflow: hidden;
}


/* TRACK */

.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.7s ease;
}


/* CARD WIDTH = 4 VISIBLE */

.stat-card {
    flex: 0 0 calc(25% - 18px);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.4s ease;
    animation: fadeSlideUp 0.8s ease forwards;
    text-align: center;
}


/* ICON ANIMATION ONLY */

.stat-card i {
    font-size: 32px;
    color: #bfa6ff;
    display: inline-block;
    margin-bottom: 12px;
    transition: transform 0.4s ease;
}

.stat-card h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-card h6 {
    color: #cfc6ff;
    margin-bottom: 12px;
}

.stat-card p {
    font-size: 14px;
    opacity: 0.85;
}


/* Hover */

.stat-card:hover {
    box-shadow: 0 15px 40px rgba(155, 110, 255, 0.25);
}

.stat-card:hover i {
    transform: rotate(-8deg) scale(1.15);
}


/* Dots */

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slider-dots span {
    width: 8px;
    height: 8px;
    background: #6c5dd3;
    opacity: 0.4;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slider-dots span.active {
    opacity: 1;
    transform: scale(1.4);
}


/* Animation */


/* Active card highlight */

.stat-card.active {
    box-shadow: 0 20px 20px 0px rgba(155, 110, 255, 0.45);
    position: relative;
}

.stat-card.active::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(120deg, #9b6eff, transparent);
    opacity: 0.25;
    z-index: -1;
}

.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Mobile */

@media (max-width: 992px) {
    .stat-card {
        flex: 0 0 48%;
    }
}


/* Section 3 Css ends */


/* Section 4 Css starts */

.ai-tabs-section {
    position: relative;
    background: radial-gradient(circle at center, #0f0f0f, #050505);
    color: #fff;
    padding: 80px 0 calc(80px + 8vw);
}


/* Tabs */

.ai-tabs-nav {
    gap: 12px;
    flex-wrap: wrap;
}

.ai-tabs-nav .nav-link {
    border-radius: 30px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    background: transparent;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.ai-tabs-nav .nav-link.active {
    background: linear-gradient(135deg, #6a4cff, #8f7bff);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(120, 90, 255, 0.6);
}

.ai-tabs-nav .nav-link:hover {
    border-color: #9b6eff;
}


/* Enable horizontal scroll for tabs on mobile */

@media (max-width: 768px) {
    .ai-tabs-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .ai-tabs-nav::-webkit-scrollbar {
        display: none;
    }
}


/* Tab Content Area */

.ai-tabs-section .tab-content {
    position: relative;
}


/* Card Stack */

.ai-tabs-section .card-stack {
    position: relative;
    width: 420px;
    height: 320px;
    margin-left: auto;
    margin-right: 0;
}


/* Center cards on smaller screens */

@media (max-width: 992px) {
    .ai-tabs-section .card-stack {
        margin: 60px auto 0;
    }
}


/* Stack cards */

.ai-tabs-section .card-stack span {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #1f2933, #111);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform-origin: bottom right;
    animation: stackIn 0.6s ease forwards;
}

.ai-tabs-section .card-stack span:nth-child(1) {
    transform: rotate(0deg);
}

.ai-tabs-section .card-stack span:nth-child(2) {
    transform: rotate(-8deg);
}

.ai-tabs-section .card-stack span:nth-child(3) {
    transform: rotate(-16deg);
}

.ai-tabs-section .card-stack span:nth-child(4) {
    transform: rotate(-24deg);
}


/* Accent colors per tab */

.card-stack.alt span {
    border-color: #6a4cff;
}

.card-stack.alt2 span {
    border-color: #4cc9f0;
}

.card-stack.alt3 span {
    border-color: #f4c430;
}

.card-stack.alt4 span {
    border-color: #ff6a88;
}

@keyframes stackIn {
    from {
        opacity: 0;
        transform: translateY(30px) rotate(-30deg);
    }
    to {
        opacity: 1;
    }
}


/* Mobile card size */

@media (max-width: 576px) {
    .ai-tabs-section .card-stack {
        width: 100%;
        height: 260px;
    }
}


/* Section 4 Css ends */


/* Section 5 Css starts */

.workflow-section {
    background: radial-gradient(circle at top, #111, #050505);
    padding: 80px 0;
    color: #fff;
}


/* Heading */


/* Grid */

.workflow-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    margin-top: 60px;
}


/* Cards */

.workflow-card {
    background: linear-gradient(180deg, #6a4bff, #7e5cff);
    border-radius: 35px;
    box-shadow: 0px 2px 32px 0px #6c4cff;
    padding: 26px 10px;
    position: relative;
    transition: transform 0.3s ease;
    height: 100%;
}

.workflow-card:hover {
    transform: translateY(-6px);
}


/* Icon */

.workflow-card .icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}


/* Step number */

.workflow-card .step {
    position: absolute;
    top: 22px;
    right: 18px;
    font-size: 30px;
    opacity: 0.3;
    font-weight: 700;
}

.workflow-card h6,
.workflow-card p {
    text-align: center;
}

.workflow-card h6 {
    font-size: 22px;
    margin: 20px 0px;
}

.workflow-card p {
    font-size: 16px;
}


/* Arrow */

.flow-arrow {
    width: 60px;
    height: 20px;
}

.flow-arrow path {
    fill: none;
    stroke: #f5c400;
    stroke-width: 2.5;
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: drawArrow 1.5s infinite ease-in-out;
}

@keyframes drawArrow {
    0% {
        stroke-dashoffset: 80;
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0.3;
    }
}


/* Footer */

.workflow-foot {
    text-align: center;
    margin-top: 40px;
    opacity: 0.8;
}


/* ✅ MOBILE */

@media (max-width: 768px) {
    .workflow-grid {
        grid-template-columns: 1fr;
    }
    .flow-arrow {
        display: none;
    }
}


/* Section 5 Css ends */

.homesec6,
.homesec7,
.homesec8 {
    padding: 70px 0px;
}

.homesec8 {
    padding-bottom: 250px;
}

.homesec8-button {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.7rem;
    padding-inline: 1.3rem;
    background: #6a4bff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffff;
    gap: 7px;
    font-weight: 400;
    border: 2px solid #ffffff1f;
    outline: none;
    overflow: hidden;
    font-size: 15px;
}

.homesec8-button i {
    font-size: 24px;
    transition: all 0.3s ease-in-out;
}


/* .icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
} */

.homesec8-button:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

.homesec8-button:hover .icon {
    transform: translate(4px);
}

.homesec8-button:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.homesec8-button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
        left: -100px;
    }
    60% {
        left: 100%;
    }
    to {
        left: 100%;
    }
}

.logo-marquee {
    background: #0b0b0b;
}

.marquee-track {
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    min-width: 200px;
    height: 80px;
    /* Equal height */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 40px;
}

.marquee-item img {
    /* max-height: 100%; */
    max-width: 220px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
}

.marquee-item img:hover {
    filter: none;
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* homesec6 Cards starts */


/* From Uiverse.io by Prince4fff */

.card p {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.card p.small {
    font-size: 14px;
    color: #b7b7b8;
}

.go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 40px;
    height: 40px;
    overflow: hidden;
    top: 0;
    right: 0;
    background-color: #1e142d;
    border-radius: 0 4px 0 32px;
}

.go-arrow {
    margin-top: -4px;
    margin-right: -4px;
    color: white;
    font-family: courier, sans;
}

.card1 {
    display: block;
    position: relative;
    max-width: 92%;
    height: 100%;
    background-color: transparent;
    border: 2px solid #3d2d87;
    border-radius: 30px;
    padding: 32px 24px;
    margin: 0px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
}

.card1 i {
    color: #6a4bff;
}

.card1:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -38px;
    right: 86px;
    background: #1e142d;
    height: 32px;
    width: 32px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.25s ease-out;
}

.card1:hover:before {
    transform: scale(21);
}

.card1:hover p {
    transition: all 0.3s ease-out;
    color: rgba(255, 255, 255, 0.8);
}

.card1:hover .small {
    color: #726880;
}

.card1:hover i {
    color: #fff;
    transition: all 0.3s ease-out;
    transform: scale(1.2);
}

.card1:hover h3 {
    transition: all 0.3s ease-out;
    color: #fff;
}

.card2 {
    display: block;
    top: 0px;
    position: relative;
    max-width: 262px;
    background-color: #f2f8f9;
    border-radius: 4px;
    padding: 32px 24px;
    margin: 12px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    border: 1px solid #f2f8f9;
}

.card2:hover {
    transition: all 0.2s ease-out;
    box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);
    top: -4px;
    border: 1px solid #ccc;
    background-color: white;
}

.card2:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: #00838d;
    height: 32px;
    width: 32px;
    border-radius: 32px;
    transform: scale(2);
    transform-origin: 50% 50%;
    transition: transform 0.15s ease-out;
}

.card2:hover:before {
    transform: scale(2.15);
}

.card3 {
    display: block;
    top: 0px;
    position: relative;
    max-width: 262px;
    background-color: #f2f8f9;
    border-radius: 4px;
    padding: 32px 24px;
    margin: 12px;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid #f2f8f9;
}

.card3 .go-corner {
    opacity: 0.7;
}

.card3:hover {
    border: 1px solid #00838d;
    box-shadow: 0px 0px 999px 999px rgba(255, 255, 255, 0.5);
    z-index: 500;
}

.card3:hover p {
    color: #00838d;
}

.card3:hover .go-corner {
    transition: opactiy 0.3s linear;
    opacity: 1;
}

.card4 {
    display: block;
    top: 0px;
    position: relative;
    max-width: 262px;
    background-color: #fff;
    border-radius: 30px;
    padding: 32px 24px;
    /* margin: 12px; */
    text-decoration: none;
    overflow: hidden;
    border: 1px solid #ccc;
}

.card4 .go-corner {
    background-color: #00838d;
    height: 100%;
    width: 16px;
    padding-right: 9px;
    border-radius: 0;
    transform: skew(6deg);
    margin-right: -36px;
    align-items: start;
    background-image: linear-gradient(-45deg, #8f479a 1%, #dc2a74 100%);
}

.card4 .go-arrow {
    transform: skew(-6deg);
    margin-left: -2px;
    margin-top: 9px;
    opacity: 0;
}

.card4:hover {
    border: 1px solid #cd3d73;
}

.card4 h3 {
    margin-top: 8px;
}

.card4:hover .go-corner {
    margin-right: -12px;
}

.card4:hover .go-arrow {
    opacity: 1;
}

.homesec6 .card {
    background-color: transparent;
    height: 100%;
}

.ai-tabs-section .nav-link:focus,
.nav-link:hover {
    color: #fff;
}


/* homesec6 Cards ends */

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
    .di-footer {
        padding-top: 140px;
    }
    nav .navbar .nav-links {
        width: 68%;
    }
}

@media only screen and (max-width: 1000px) {
    .navbar .search-box {
        display: none;
    }
    .navbar .logo img {
        width: 180px;
    }
    section h2 {
        font-size: 2.5rem;
    }
    .footer-bottom p,
    .footer-bottom a {
        font-size: 14px;
    }
}

@media only screen and (min-width: 600px) and (max-width: 1000px) {
    section h1 {
        font-size: 3rem !important;
    }
    .di-footer {
        clip-path: polygon(0 0, 100% 14%, 100% 100%, 0 100%);
        padding-top: 76px;
        margin-top: -240px;
    }
    .di-footer .fst-italic {
        font-size: 22px !important;
    }
    .workflow-grid {
        display: flex;
        flex-wrap: wrap;
    }
    .workflow-card {
        height: -webkit-fill-available;
        width: 48%;
        margin-bottom: 18px;
    }
    .workflow-section {
        padding: 60px 0 40px 0;
    }
    .homesec6,
    .homesec7 {
        padding: 50px 0px 30px 0px;
    }
    .marquee-item img {
        max-width: 180px;
    }
}

@media only screen and (max-width: 600px) {
    .logo img {
        width: 70%;
    }
    .typewriter-title {
        width: 100%;
        white-space: normal;
        /* allow line break */
    }
    .typewriter-title.animate {
        animation: none;
    }
    section h2 {
        font-size: 1.8rem;
    }
    section h1 {
        font-size: 2.5rem !important;
    }
    p {
        font-size: 18px;
    }
    .hero-sect i {
        font-size: 24px;
        padding-left: 2px;
        margin-right: 6px;
        margin-top: 20px;
    }
    .stat-card {
        flex: 0 0 98%;
    }
    .ai-stats-section {
        padding-top: 3rem;
    }
    .workflow-section {
        padding-bottom: 40px;
    }
    .card1 {
        max-width: 93%;
        margin: auto
    }
    .homesec8 .gap-5 {
        flex-wrap: wrap;
        gap: 2rem !important;
    }
    .di-footer {
        clip-path: polygon(0 0, 100% 13%, 100% 100%, 0 100%);
        padding-top: 74px;
        padding-bottom: 20px;
    }
    .di-footer .col-lg-2 {
        text-align: center !important;
    }
    .footer-bottom .mb-4 {
        margin-bottom: 1rem !important;
    }
    .di-footer h2 {
        font-size: 34px;
    }
}