@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* font-family: "Manrope", sans-serif; */
/* font-family: "Inter", sans-serif; */
/* font-family: "Playfair Display", serif; */

/* CSS Boilerplate */

/* Reset some default browser styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Set base font and background */
html,
body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
    /* font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5; */
    background-color: #fff;
    color: #222;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    /* margin-bottom: 0.5em; */

}

/* Links */
a {
    color: #222;
    text-decoration: none;
}

.mobile-navbar {
    display: none;
}

@media only screen and (max-width:768px) {
    body {
        cursor: default;
    }

    .cursor-inner,
    .cursor-outer {
        display: none;
    }

    .navigation {
        display: none;
    }

    .mobile-navbar {
        display: block;
    }
}



/* hero */
.service-hero-Section {
    width: 100%;
    height: auto;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: url(/assets/images/service\ hero\ bg\ 2.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;


    .absolute-blur-circle {
        position: absolute;
        width: 200px;
        height: 200px;
        background: linear-gradient(120deg, #3B007040, #382A4B30);
        top: 20%;
        left: 30%;
        filter: blur(50px);
    }

    .absolute-blur-circle-2 {
        position: absolute;
        width: 150px;
        height: 150px;
        background: linear-gradient(-120deg, #3B007030, #382A4B40);
        bottom: 20%;
        right: 30%;
        filter: blur(50px);
    }

    .service-hero-Container {
        width: 100%;
        max-width: 1400px;
        height: auto;
        margin: 80px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        /* position: relative; */



        h4 {
            display: inline-block;
            color: #3B0070;
            background-color: #931BFF25;
            padding: 3px 10px;
            border-radius: 5px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        h1 {
            font-size: 3.5rem;
            line-height: 4.5rem;
            margin-bottom: 20px;
            font-weight: 600;
            text-align: center;
            max-width: 850px;
            color: #181818;

            .special-heading {
                color: transparent;
                background: linear-gradient(90deg, #3B0070, #931BFF);
                background-clip: text;
                -webkit-background-clip: text;
            }
        }

        p {
            font-size: 1.1rem;
            line-height: 1.6rem;
            color: #363545;
            margin-bottom: 20px;
            text-align: center;
            max-width: 900px;
        }

        a {
            font-size: 1.1rem;
            line-height: 1.8rem;
            font-weight: 500;
            color: #fafafa;
            background: linear-gradient(90deg, #3B0070, #931BFF);
            padding: 10px 25px;
            border-radius: 15px;
            box-shadow: 5px 5px 20px #931BFF25;
            transition: all 0.3s ease-in-out;

            &:hover {
                box-shadow: 8px 8px 30px #931BFF40;
                transform: translateX(3px);
            }
        }

    }

    .statSection {
        width: 100%;
        height: auto;
        max-width: 1400px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        .stat-cards {
            width: 100%;
            max-width: 900px;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            margin-bottom: 50px;
            z-index: 2;
            /* margin-top: 50px; */

            .stat-card {
                width: 30%;
                height: auto;
                padding: 15px;
                background: #fff;
                box-shadow: 4px 4px 20px #0a0a0a15;
                border-radius: 15px;

                i {
                    /* display: none; */
                    font-size: 2.5rem;
                    /* padding: 12px; */
                    color: transparent;
                    background: linear-gradient(120deg, #3B0070, #931BFF);
                    background-clip: text;
                    border-radius: 50%;
                    margin-bottom: 20px;
                }

                h3 {
                    font-size: 2rem;
                    line-height: 2.5rem;
                    color: #222;
                    margin-bottom: 5px;
                    margin-top: 15px;
                }

                p {
                    font-size: 16px;
                    color: #363545;
                }
            }
        }
    }
}


@media only screen and (max-width:768px) {
    .service-hero-Section {
        padding: 0 10px;

        .absolute-blur-circle,
        .absolute-blur-circle-2 {
            width: 100px;
            height: 100px;
            filter: blur(30px);
        }

        .service-hero-Container {
            padding: 0;
            margin: 80px 0;

            h4 {
                font-size: 14px;
                margin-bottom: 10px;
            }

            h1 {
                font-size: 2rem;
                line-height: 2.5rem;
                margin-bottom: 15px;
            }

            p {
                font-size: 1rem;
                line-height: auto;
            }

            a {
                font-size: 1rem;
            }
        }
    }

    .stat-cards {
        flex-wrap: wrap;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px !important;

        .stat-card {
            width: 45% !important;
            padding: 0;
            align-items: center !important;
            justify-content: center !important;
            flex-direction: column !important;
            text-align: center;
        }
    }
}

/* hero */



/* service card section */
.service-cards-Section {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .service-cards-container {
        width: 100%;
        height: auto;
        max-width: 1400px;
        margin: 60px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;


        h4 {
            display: inline-block;
            color: #3B0070;
            background-color: #931BFF25;
            padding: 3px 10px;
            border-radius: 5px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        h1 {
            font-size: 2.5rem;
            line-height: 3rem;
            margin-bottom: 20px;
            font-weight: 600;
            max-width: 800px;
            text-align: center;
            color: #181818;

            .special-heading {
                color: transparent;
                background: linear-gradient(90deg, #3B0070, #931BFF);
                background-clip: text;
                -webkit-background-clip: text;
            }
        }

        >p {
            font-size: 1.1rem;
            line-height: 1.6rem;
            color: #363545;
            margin-bottom: 20px;
            text-align: center;
            max-width: 950px;
        }

        .serv-cards {
            width: 100%;
            height: auto;
            display: flex;
            align-items: start;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 50px 0;
            margin-top: 40px;

            .serv-card {
                width: 30%;
                max-width: 35%;
                height: auto;
                border: none;
                border-radius: 15px;
                box-shadow: 5px 5px 20px #36354515;
                padding: 20px;
                background-color: #fff;
                display: flex;
                align-items: start;
                flex-direction: column;
                /* justify-content: space-between; */
                /* transition: all .3s ease-in-out; */

                /* &:hover{
                    background: #3b007010;
                } */

                .s-head {
                    width: 100%;
                    height: auto;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    margin-bottom: 20px;

                    i {
                        font-size: 2rem;
                        color: #fafafa;
                        background: linear-gradient(120deg, #181818, #565574);
                        padding: 15px;
                        border-radius: 12px;
                    }

                    .duration-tag {
                        border-radius: 8px;
                        background: #931BFF20;
                        font-size: 14px;
                        font-weight: 500;
                        padding: 2px 10px;
                        color: #382a4b;
                        border: 1px solid #3B007050;
                    }
                }


                .service-name {
                    font-size: 1.4rem;
                    color: #0a0a0a;
                    margin-bottom: 20px;
                }

                .serv-brief {
                    font-size: 1rem;
                    color: #222;
                    width: 100%;
                    max-width: 100%;
                    margin-bottom: 20px;
                }

                >h5 {
                    font-size: 1rem;
                    color: #181818;
                    margin-bottom: 10px;
                }

                ul {
                    margin-bottom: 20px;
                }

                ul li {
                    font-size: 1rem;
                    color: #363545;
                    list-style: none;
                    margin-bottom: 6px;

                    i {
                        color: #08CB00;
                    }
                }

                >h6 {
                    font-size: 1.1rem;
                    color: #181818;
                    text-transform: capitalize;
                    margin-bottom: 3px;
                }

                strong {
                    font-size: 1.8rem;
                    color: transparent;
                    background: linear-gradient(90deg, #3B0070, #382a4b);
                    background-clip: text;
                    -webkit-background-clip: text;
                    font-weight: 650;
                    margin-bottom: 20px;
                }

                .chat-btn {
                    width: 100%;
                    display: block;
                    text-align: center;
                    font-size: 1.1rem;
                    font-weight: 500;
                    background: linear-gradient(120deg, #382A4B, #9174B8);
                    padding: 10px 30px;
                    color: #fafafa;
                    border-radius: 15px;

                    i {
                        font-size: 1.3rem;
                        font-weight: 500;
                    }
                }
            }
        }
    }
}

@media only screen and (max-width:768px) {
    body {
        position: relative;
    }

    .service-cards-Section {
        padding: 0 10px;
        margin: 0;

        .service-cards-container {
            padding: 0;
            margin: 50px 0;

            >h4 {
                font-size: 14px;
                margin-bottom: 10px;
            }

            >h1 {
                font-size: 2rem;
                line-height: 2.5rem;
                margin-bottom: 10px;
            }

            >p {
                font-size: 1rem;
                line-height: auto;
                margin-bottom: 20px;
            }

            .serv-cards {
                padding: 0;
                gap: 20px;

                .serv-card {
                    width: 100% !important;
                    max-width: 100% !important;
                    position: sticky;
                    top: 80px;
                }
            }
        }
    }
}

/* service card section */



/* process section */
.process-section {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .process-container {
        width: 100%;
        height: auto;
        max-width: 1400px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin: 50px 0;

        h4 {
            display: inline-block;
            color: #3B0070;
            background-color: #931BFF25;
            padding: 3px 10px;
            border-radius: 5px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        h1 {
            font-size: 2.5rem;
            line-height: 3rem;
            margin-bottom: 20px;
            font-weight: 600;
            text-align: center;
            max-width: 900px;
            color: #181818;

            .special-heading {
                color: transparent;
                background: linear-gradient(90deg, #3B0070, #931BFF);
                background-clip: text;
                -webkit-background-clip: text;
            }
        }

        >p {
            font-size: 1.1rem;
            line-height: 1.6rem;
            color: #363545;
            margin-bottom: 20px;
            text-align: center;
            max-width: 800px;
        }

        .processCards {
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 40px;

            .process-card {
                width: 48%;
                height: auto;
                padding: 20px 0px;
                border: 1px solid #931BFF20;
                background: #9174b810;
                border-radius: 15px;
                display: flex;
                align-items: start;
                justify-content: space-between;

                .pro-left {
                    width: 20%;
                    height: auto;
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    .icon-wrapper {
                        position: relative;
                        background: linear-gradient(135deg, #382a4b, #9174b8);
                        width: 80px;
                        height: 80px;
                        border-radius: 15px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }

                    .icon-wrapper i {
                        font-size: 1.5rem;
                        color: #fff;
                    }

                    .absolute-count {
                        position: absolute;
                        top: -6px;
                        right: -6px;
                        width: 22px;
                        height: 22px;
                        border-radius: 50%;
                        background: #fdfdfd;
                        color: #3b0070;
                        font-size: 12px;
                        font-weight: bold;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }

                }




                .pro-right {
                    width: 80%;
                    height: auto;
                    display: flex;
                    align-items: start;
                    justify-content: start;
                    flex-direction: column;

                    h3 {
                        font-size: 1.1rem;
                        margin-bottom: 5px;
                        color: #181818;
                    }

                    small {
                        font-size: 1rem;
                        color: #363545;
                    }
                }

            }

            .process-card:nth-child(2) .icon-wrapper {
                background: linear-gradient(90deg, #363545, #565574);
            }

            .process-card:nth-child(3) .icon-wrapper {
                background: linear-gradient(90deg, #18250E, #324522);
            }

            .process-card:nth-child(4) .icon-wrapper {
                background: linear-gradient(90deg, #382A4B, #9174B8);
            }
        }
    }
}

@media only screen and (max-width:768px) {
    .process-section {
        padding: 0 10px;
        margin: 0;

        .process-container {
            padding: 0;
            margin: 50px 0;

            h4 {
                font-size: 14px;
                margin-bottom: 10px;
            }

            h1 {
                font-size: 2rem;
                line-height: 2.5rem;
                margin-bottom: 10px;
            }

            p {
                font-size: 1rem;
                line-height: auto;
            }

            .processCards {
                width: 100%;
                height: auto;
                padding: 0;
                margin: 30px 0;
                gap: 30px;

                .process-card {
                    width: 100%;
                    height: auto;
                    padding: 10px 5px;
                    gap: 10px;

                    .pro-left .icon-wrapper {
                        width: 60px;
                        height: 60px;
                    }
                }
            }
        }
    }
}

/* process section */


/* portfolio */
.portfolio-Section {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .portfolio-Container {
        width: 100%;
        max-width: 1400px;
        height: auto;
        margin: 60px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        .port-head {
            width: 100%;
            height: auto;
            margin-bottom: 30px;
            display: flex;
            align-items: start;
            justify-content: space-between;

            .po-left {
                width: 60%;

                h4 {
                    display: inline-block;
                    color: #3B0070;
                    background-color: #931BFF25;
                    padding: 3px 10px;
                    border-radius: 5px;
                    margin-bottom: 15px;
                    font-weight: 500;
                }

                h1 {
                    font-size: 2.5rem;
                    line-height: 3rem;
                    /* margin-bottom: 20px; */
                    font-weight: 600;
                    text-align: left;
                    max-width: 600px;
                    color: #181818;

                    .special-heading {
                        color: transparent;
                        background: linear-gradient(90deg, #3B0070, #931BFF);
                        background-clip: text;
                        -webkit-background-clip: text;
                    }
                }

            }

            .po-right {
                width: 40%;

                p {
                    font-size: 1.1rem;
                    line-height: 1.6rem;
                    color: #363545;
                    margin-bottom: 20px;
                    text-align: left;
                }

                a {
                    font-size: 1rem;
                    line-height: 1.8rem;
                    font-weight: 500;
                    color: #fafafa;
                    background: linear-gradient(90deg, #3B0070, #931BFF);
                    padding: 10px 25px;
                    border-radius: 15px;
                    box-shadow: 5px 5px 20px #931BFF25;
                    transition: all 0.3s ease-in-out;

                    &:hover {
                        box-shadow: 8px 8px 30px #931BFF40;
                        transform: translateX(3px);
                    }
                }
            }
        }

        .portfolio-cards{
            width: 100%;
            height: auto;
            display: flex;
            align-items: start;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px 10px;

            .port-card{
                width: 49%;
                height: auto;
                min-height: 500px;
                max-height: 500px;
                overflow: hidden;
                position: relative;
                border-radius: 15px;
                box-shadow: 2px 2px 20px #0a0a0a10;

                img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

                .case-info{
                    position: absolute;
                    top: 5px;
                    left: 5px;
                    padding: 10px 20px;
                    background-color: #ffffff50;
                    backdrop-filter: blur(10px);
                    border-radius: 10px;

                    h2{
                        font-size: 1.2rem;
                        color: #fdfdfd;
                        
                        font-weight: 500;
                    }
                    > p{
                        font-size: 1rem;
                        color: #fafafa;
                    }
                }
            }
        }

    }
}
@media only screen and (max-width:768px) {
    .portfolio-Section{
        padding: 0 10px;
        height: auto;
        margin: 0;

        .portfolio-Container{
            padding: 0;
            margin: 40px 0;
            flex-wrap: wrap;

            .port-head{
                width: 100%;
                flex-wrap: wrap;

                .po-left, .po-right{
                    width: 100%;
                }

                .po-left{
                    h4{
                        font-size: 14px;
                        margin-bottom: 10px;
                    }

                    h1{
                        font-size: 2rem;
                        line-height: 2.5rem;
                        margin-bottom: 15px;
                    }
                }

                .po-right{

                    p{
                        font-size: 1rem;
                        line-height: 1.5;
                        margin-bottom: 20px;
                    }
                }
            }

            .portfolio-cards{
                width: 100%;
                padding: 0;
                gap: 20px;
                flex-wrap: wrap;

                .port-card{
                    width: 100%;
                    height: auto;
                    min-height: auto;
                }
            }
            
        }
    }
}
/* portfolio */