@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;
    scroll-behavior: smooth;
    position: relative;
}

::-webkit-scrollbar {
    display: none;
}

/* 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;
    cursor: pointer;
}

.special-heading {
    font-family: "Playfair Display", serif;
    font-style: italic;
}


.MainContainer {
    width: 100%;
    height: 100%;
}

/* desktop navigation */
.navigation {
    width: 100%;
    height: 100px;
    background-color: #fff;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;


    .naviContainer {
        width: 100%;
        height: 100%;
        max-width: 1400px;
        display: flex;
        align-items: center;
        justify-content: space-between;

        .logo {
            width: 20%;
            height: auto;
            overflow: hidden;

            img {
                width: 200px;
                height: auto;
            }
        }

        .nav-items {
            width: 50%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-evenly;

            ul {
                list-style: none;
                display: flex;
                align-items: center;
                justify-content: space-evenly;
                width: 100%;
                height: 100%;
            }

            a {
                font-size: 1.1rem;
                line-height: 1.8rem;
                font-weight: 500;
                color: #181818;
                position: relative;
                transition: all 0.3s ease-in-out;
            }
        }

        .nav-cta {
            width: 20%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: flex-end;

            a {
                font-size: 1.1rem;
                line-height: 1.8rem;
                font-weight: 500;
                color: #fafafa;
                background: linear-gradient(90deg, #3B0070, #931BFF);
                padding: 10px 20px;
                border-radius: 15px;
            }
        }
    }
}

.nav-items a {
    transition: all 0.3s ease-in-out;
    position: relative;
}

.nav-items a>i {
    /* color: #3D3C50; */
    color: #CB1725;
    transition: all 0.3s ease-in-out;
    position: absolute;
    right: -25px;
}

.nav-items a:hover i {
    /* color: #574270; */
    color: #9E1621;
    transform: rotate(90deg);
}


@media only screen and (max-width:768px) {
    .navigation {
        display: none;
    }
}

.mobile-navbar {
    display: none;
}
/* desktop navigation */


/* mobile navigation */
/* mobile nav */
/* Mobile Navbar Container */
.mobile-navbar {
    background: #fff;
    padding: 1rem 1.5rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    /* position: fixed;
    top: 0;
    left: 0; */
    width: 100% !important;
    /* width: 100% !important; */
    /* max-width: 100% !important; */
    /* max-width: min-content; */
    z-index: 999;
    overflow: hidden !important;
}

.mobile-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* width: 100%; */
    width: 100% !important;
    max-width: 100% !important;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-navbar .logo img {
    height: 40px;
}

.menu-toggle i {
    color: #382A4B;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Overlay Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    color: #181818;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2rem;
    z-index: 9999;
}

.menu-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.menu-header i {
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    margin-top: 2rem;
    padding: 0;
}

.mobile-nav-links li {
    margin: 1.2rem 0;
}

.mobile-nav-links li a {
    font-size: 1.4rem;
    color: #111;
    text-decoration: none;
    position: relative;
}

.mobile-nav-links li a::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background: #3B0070;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.mobile-nav-links li a:hover::after {
    width: 100%;
}

.mobile-contact-cards {
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    background: #ededed;
    padding: 0.8rem 1rem;
    border-radius: 10px;

    /* i{
    color: #ff0000;
    font-size: 1rem;
  } */
    a {
        text-decoration: none;
        color: #181818;
        cursor: pointer;
    }
}

/* Responsive Trigger */
@media screen and (max-width: 1024px) {
    .mobile-navbar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

/* mobile nav */
/* mobile navigation */



/* hero section */
.heroSection {
    width: 100%;
    height: auto;
    min-height: 800px;
    max-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;

    .floating-icon-1,
    .floating-icon-2 {
        position: absolute;
        animation: float 6s ease-in-out infinite;
        opacity: 0.7;
    }

    .floating-icon-1 {
        top: 30%;
        left: 5%;
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #363545, #565574);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 25px;
        transition: all 0.3s ease-in-out;
        animation: float 4s ease-in-out infinite;

        img {
            width: 50px;
            height: 50px;
            filter: invert(1);
        }
    }


    .floating-icon-1:hover {
        background: linear-gradient(135deg, #565574, #363545);
    }

    .floating-icon-2 {
        bottom: 20%;
        right: 5%;
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #382A4B, #684F88);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 25px;
        transition: all 0.3s ease-in-out;
        animation: float2 4s ease-in-out infinite;



        img {
            width: 50px;
            height: 50px;
            filter: invert(1);
        }
    }

    .floating-icon-2:hover {
        background: linear-gradient(135deg, #684F88, #382A4B);
    }

    .heroContainer {
        width: 100%;
        height: auto;
        min-height: 600px;
        max-height: auto;
        max-width: 1400px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        /* margin-top: 70px; */
        /* margin-bottom: 50px; */

        h4 {
            font-size: 1.1rem;
            line-height: 1.8rem;
            font-weight: 500;
            color: #3B0070;
            margin-bottom: 30px;
            padding: 10px 20px;
            border-radius: 25px;
            background: #F3E5FF;

            i {
                margin-right: 8px;
                color: #931BFF;
            }
        }

        h1 {
            font-size: 3.5rem;
            line-height: 4.5rem;
            max-width: 1000px;
            text-align: center;
            font-weight: 650;
            margin-bottom: 30px;
            color: #181818;

            span {
                font-weight: 650;
                background: linear-gradient(-90deg, #3B0070, #931BFF);
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
        }

        p {
            font-size: 1.4rem;
            line-height: 2.4rem;
            max-width: 900px;
            text-align: center;
            color: #565574;
            margin-bottom: 30px;

            strong {
                color: #363545;
                font-weight: 600;
            }
        }

        .hero-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;

            .hero-primary-cta {
                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);
                }
            }

            .hero-secondary-cta {
                font-size: 1.1rem;
                line-height: 1.8rem;
                font-weight: 500;
                color: #444;
                background: #fff;
                padding: 10px 25px;
                border-radius: 15px;
                border: 1px solid #36354550;
                /* box-shadow: 5px 5px 20px #3B007025; */
                transition: all 0.3s ease-in-out;

                &:hover {
                    box-shadow: 8px 8px 30px #18181825;
                    /* transform: translateX(3px); */
                }
            }


        }

        .hero-stats {
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 90px;
            margin-top: 80px;

            .H-Stat-Card {
                width: auto;
                height: auto;
                display: flex;
                align-items: start;
                justify-content: start;
                flex-direction: column;

                h2 {
                    font-size: 3rem;
                    line-height: 3.5rem;
                    font-weight: 650;
                    color: transparent;
                    background-clip: text;
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                }

                p {
                    font-size: 1.1rem;
                    line-height: 1.5rem;
                    color: #444;
                    margin-top: 4px;
                }
            }

            .H-Stat-Card:nth-child(1) h2 {
                background: linear-gradient(-90deg, #3B0070, #931BFF);
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            .H-Stat-Card:nth-child(2) h2 {
                background: linear-gradient(-90deg, #684F88, #382A4B);
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            .H-Stat-Card:nth-child(3) h2 {
                background: linear-gradient(-90deg, #47080D, #831921);
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            .H-Stat-Card:nth-child(4) h2 {
                background: linear-gradient(-90deg, #18250E, #324522);
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

        }
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(0px);
    }
}


@media only screen and (max-width:768px) {

    .cursor-inner,
    .cursor-outer {
        display: none;
    }

    .heroSection {
        padding: 0 10px;

        .floating-icon-1 {
            top: 15%;
            width: 40px;
            height: 40px;
            border-radius: 5px;
            z-index: 1;

            img {
                width: 20px;
                height: 20px;
            }
        }

        .floating-icon-2 {
            bottom: 20%;
            width: 40px;
            height: 40px;
            border-radius: 5px;
            z-index: 1;


            img {
                width: 20px;
                height: 20px;
            }
        }

        .heroContainer {
            margin: 0;
            padding: 0;
            margin-top: 40px;
            margin-bottom: 30px;

            h4 {
                font-size: 14px;
            }

            h1 {
                font-size: 2rem;
                line-height: 2.5rem;
            }

            p {
                font-size: 1rem;
                line-height: 20px;
            }

            .hero-cta {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 15px;

                a {
                    padding: 10px 15px !important;
                    font-size: 1rem !important;
                }
            }

            .hero-stats {
                width: 100%;
                height: auto;
                overflow: hidden;
                flex-wrap: wrap;
                padding: 0;
                margin-top: 40px;
                gap: 30px;
                align-items: center;
                justify-content: center;
                /* gap: 10px; */

                .H-Stat-Card {
                    width: 45%;
                    height: auto;
                    align-items: center !important;
                    /* justify-content: center !important; */
                    flex-direction: column;
                    /* background-color: #171717; */
                    /* text-align: left !important; */

                    h2 {
                        font-size: 3rem !important;
                    }

                    p {
                        padding: 0;
                    }
                }
            }
        }
    }
}

/* hero section */



/* about section */
.aboutsection {
    width: 100%;
    height: auto;
    min-height: auto;
    max-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .aboutContainer {
        width: 100%;
        height: auto;
        display: flex;
        max-width: 1400px;
        margin-top: 50px;
        margin-bottom: 120px;
        align-items: center;
        justify-content: space-between;
        gap: 30px;

        .aboutleft,
        .aboutright {
            width: 50%;
            height: auto;
        }

        .aboutleft {

            >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;

                .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;
            }

            ul {
                width: 100%;
                display: flex;
                align-items: start;
                justify-content: start;
                flex-direction: column;
                /* margin-left: 10px; */
                list-style-type: none;
                margin-bottom: 20px;
            }

            ul li {
                font-size: 1rem;
                width: auto;
                margin-bottom: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            li i {
                margin-right: 10px;
                font-size: 1.5rem;
                font-weight: 500;
                background: linear-gradient(45deg, #3B0070, #931BFF);
                color: transparent;
                background-clip: text;
            }

            >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);
                }
            }
        }

        .aboutright {
            width: 50%;
            height: auto;
            display: flex;
            align-content: center;
            justify-content: center;
            flex-direction: column;
            gap: 20px;


            .right-up {
                width: 100%;
                height: auto;
                display: flex;
                align-items: center;
                justify-content: space-around;
                /* padding: 20px; */
                gap: 20px;

                .up-left-box,
                .up-right-box {
                    width: 50%;
                    height: auto;
                    min-height: 200px;
                    display: flex;
                    align-items: start;
                    justify-content: space-between;
                    flex-direction: column;
                    padding: 20px;
                    border-radius: 15px;
                    background-color: #f9f9f9;
                    transition: all .5s ease-in-out;
                    box-shadow: 4px 4px 10px #382A4B25;


                    h4 {
                        font-size: 1rem;
                        color: #382A4B;
                    }

                    h3 {
                        font-size: 3rem;
                        color: transparent;
                        background: linear-gradient(125deg, #363545, #444);
                        background-clip: text;
                        -webkit-background-clip: text;
                        font-weight: 500;
                    }

                    p {
                        font-size: 1rem;
                        color: #444;
                    }
                }

                .up-left-box:hover,
                .up-right-box:hover {
                    background: linear-gradient(125deg, #F3E5FF, #E9CFFF);
                    box-shadow: 10px 10px 60px #E9CFFF25;
                }

            }

            .right-low {
                width: 100%;
                height: auto;
                min-height: 200px;
                background-image: url(https://media.istockphoto.com/id/2119140565/vector/gray-and-white-abstract-background-with-flowing-particles.jpg?s=612x612&w=0&k=20&c=83xWBaUna9J9iVG_sJ9HSufyVS-kTDqbywvbZ8Q5gRQ=);
                border-radius: 15px;
                overflow: hidden;
                background-position: bottom center;
                background-repeat: no-repeat;
                background-size: cover;
                box-shadow: 5px 5px 30px #382A4B15;
            }
        }
    }
}

@media only screen and (max-width:768px) {
    .aboutsection {
        padding: 0 10px;

        .aboutContainer {
            flex-wrap: wrap;
            margin: 0;

            .aboutleft,
            .aboutright {
                width: 100%;
                height: auto;
            }

            .aboutleft {

                h4 {
                    font-size: 14px;
                    margin-bottom: 10px;
                }

                h1 {
                    font-size: 2rem;
                    line-height: 2.5rem;
                }

                >p {
                    font-size: 1rem;
                    line-height: 1.5rem;
                }

                >a {
                    width: 100%;
                    display: block;
                    text-align: center;
                }
            }

            .aboutright {
                padding: 0;

                .up-left-box,
                .up-right-box {
                    padding: 10px !important;

                    h4 {
                        font-size: 14px !important;
                    }

                    h3 {
                        font-size: 3rem !important;
                    }

                    >p {
                        font-size: 14px !important;
                    }
                }
            }
        }
    }
}

/* about section */


/* core values section */
.corevalueSection {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .corevalueContainer {
        width: 100%;
        max-width: 1400px;
        height: auto;
        margin-top: 50px;
        /* margin-bottom: 50px; */
        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;
        }

        >h2 {
            font-size: 2.5rem;
            line-height: 3rem;
            margin-bottom: 20px;
            font-weight: 600;

            .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;
            max-width: 750px;
            text-align: center;
        }

        .ValueCards {
            width: 100%;
            height: auto;
            display: flex;
            align-items: start;
            justify-content: space-between;
            gap: 30px;
            background-image: url(/assets/images/core\ values\ cards\ bg.png);
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;


            .val-Card {
                width: 25%;
                height: auto;
                min-height: 250px;
                display: flex;
                align-items: center;
                padding: 10px 15px;
                border-radius: 15px;
                border: 1px solid #382A4B20;
                justify-content: center;
                flex-direction: column;
                text-align: center;
                background: #fff;
                transition: all .3s ease-in-out;
                z-index: 3;

                i {
                    font-size: 2.5rem;
                    color: #3B0070;
                    background-color: #E9CFFF;
                    border-radius: 50%;
                    margin-bottom: 30px;
                    padding: 10px;
                }

                h3 {
                    font-size: 1.4rem;
                    margin-bottom: 20px;

                }
            }

            .val-Card:hover {
                background-color: #F3E5FF;
                border: 1px solid #3B007010;
                box-shadow: 5px 5px 20px #3B007010;
                transform: translateY(-5px);
            }

            .val-Card:nth-child(1) {
                margin-top: 10px;
            }

            .val-Card:nth-child(2) {
                margin-top: 40px;
            }

            .val-Card:nth-child(3) {
                margin-top: 15px;
            }

            .val-Card:nth-child(4) {
                margin-top: 50px;
            }
        }
    }
}


@media only screen and (max-width:768px) {
    .corevalueSection {
        min-height: auto !important;
        padding: 0 10px;
        margin: 0 !important;
            /* background: none !important; */


        .corevalueContainer {
            margin-top: 20px !important;
            padding: 0;
            /* background: none !important; */

            h4 {
                font-size: 14px;
                margin-bottom: 10px;
            }

            h2 {
                font-size: 2rem;
                line-height: 2.5rem;
                margin-bottom: 15px;
            }

            >p {
                font-size: 1rem;
                line-height: auto;
            }

            .ValueCards {
                width: 100%;
                height: auto;
                margin-top: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-wrap: wrap;
                background-image: none !important;
                /* flex-direction: column; */
                gap: 15px !important;
                margin: 0 !important;


                .val-Card {
                    width: 45%;
                    height: auto;
                    min-height: 180px !important;
                    padding: 15px 5px !important;
                    margin: 0px !important;

                    i {
                        padding: 10px;
                        border-radius: 10px;
                    }

                    h3 {
                        font-size: 1.2rem;
                        line-height: 1.6rem;
                        margin: 0;
                    }

                    p {
                        display: none !important;
                        margin: 0 !important;
                    }
                }
            }
        }
    }
}

/* core values section */



/* service section */
.ServiceSection {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    /* min-height: 600px; */
    justify-content: center;
    flex-direction: column;
    background-color: #fafafa;
    /* background: linear-gradient(135deg, #3B0070, #6C0FBA); */

    .serviceContainer {
        width: 100%;
        max-width: 1400px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-top: 50px;
        margin-bottom: 80px;

        >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: 900px;
            text-align: center;

            .special-heading {
                color: transparent;
                background: linear-gradient(90deg, #3B0070, #931BFF);
                background-clip: text;
                -webkit-background-clip: text;
            }
        }

        .serviceCards {
            width: 100%;
            height: auto;
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;

            .service-card {
                width: 23%;
                height: auto;
                min-height: 300px;
                display: flex;
                align-items: start;
                justify-content: space-between;
                flex-direction: column;
                background-color: #fff;
                padding: 25px 15px;
                border-radius: 12px;
                border: 1px solid #36354550;
                transition: all .3s ease-in-out;
                position: relative;
                /* overflow: hidden; */

                .serv-absolute-float-image {
                    position: absolute;
                    pointer-events: none;
                    width: 110px;
                    height: 120px;
                    object-fit: cover;
                    border-radius: 8px;
                    top: -30px;
                    right: -140px;
                    rotate: -8deg;
                    z-index: 99 !important;
                }

                .serv-absolute-float-image:nth-child(2) {
                    position: absolute;
                    width: 110px;
                    height: 120px;
                    object-fit: cover;
                    border-radius: 8px;
                    top: 110px;
                    right: -150px;
                    rotate: 0deg;
                    z-index: 99 !important;
                }

                .serv-absolute-float-image:nth-child(3) {
                    position: absolute;
                    width: 110px;
                    height: 120px;
                    object-fit: cover;
                    border-radius: 8px;
                    top: 250px;
                    right: -140px;
                    rotate: 8deg;
                    z-index: 99 !important;
                }


                div>i {
                    font-size: 1.5rem;
                    font-weight: 450;
                    border-radius: 8px;
                    padding: 8px;
                    border: 1px solid #36354575;
                }

                .s-card-con {

                    h3 {
                        font-size: 1.15rem;
                        font-weight: 550;
                        margin-bottom: 5px;
                        color: #171717;
                    }

                    p {
                        color: #363545;
                    }
                }

            }

            .service-card:hover {
                background-color: #F3E5FF25;
                border: 1px solid #F3E5FF;
            }

            .service-card:hover i {
                border: 1px solid #3B0070;
                color: #6C0FBA;
            }
        }
    }
}


@media only screen and (max-width:768px) {
    .MainContainer {
        position: relative !important;
    }

    .ServiceSection {
        padding: 0 10px;

        .serviceContainer {
            padding: 0;

            h4 {
                font-size: 14px;
                margin-bottom: 10px;
            }

            h1 {
                font-size: 2rem;
                line-height: 2.5rem;
            }

            .serviceCards {
                width: 100%;
                flex-wrap: wrap;
                justify-content: center;
                /* flex-direction: column; */
                /* gap: 20px; */
                /* margin: 0; */
                margin-top: 10px;

                .service-card {
                    background-color: #fff !important;
                    width: 100%;
                    position: sticky;
                    top: 60px !important;
                    margin-bottom: 20px !important;
                }
            }
        }
    }
}

/* service section */


/* industries we serve */
.industrySection {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 50px 0px;

    .industryContainer {
        width: 100%;
        height: auto;
        max-width: 1400px;
        margin-top: 50px;
        margin-bottom: 50px;
        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;
        }

        >h2 {
            font-size: 2.5rem;
            line-height: 3rem;
            margin-bottom: 20px;
            font-weight: 600;

            .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;
            max-width: 750px;
            text-align: center;
        }

        .indus-Cards {
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;

            .indus-card {
                width: 23%;
                height: auto;
                min-height: 250px;
                border: 1px solid #F3E5FF50;
                background-color: #F3E5FF30;
                padding: 20px;
                border-radius: 15px;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                /* gap: 10px; */
                flex-direction: column;
                transition: all .3s ease-in-out;

                &:hover {
                    box-shadow: 5px 5px 30px #00000015;
                    background-color: #F3E5FF50;
                    border: 1px solid #F3E5FF80;
                }

                >i {
                    font-size: 2rem;
                    font-weight: 500;
                    color: #382A4B;
                    background-color: #E9CFFF;
                    border-radius: 8px;
                    padding: 15px;
                    margin-bottom: 30px;
                }

                >h3 {
                    font-size: 1.2rem;
                    color: #181818;
                    font-weight: 550;
                    margin-bottom: 10px;
                }

                >p {
                    font-size: 1rem;
                    margin-bottom: 12px;
                    color: #444;
                }

                >.tag {
                    font-size: 14px;
                    padding: 5px 10px;
                    background-color: #36354515;
                    border-radius: 6px;
                    color: #181818;
                }
            }
        }

    }
}

@media only screen and (max-width:768px) {
    .industrySection {
        padding: 0 10px;
        /* margin: 0; */
        margin-top: 30px;
        margin-bottom: 30px;

        .industryContainer {
            padding: 0;
            margin: 0;

            h4 {
                font-size: 14px;
                margin-bottom: 10px;
            }

            h2 {
                font-size: 2rem;
                line-height: 2.5rem;
                margin-bottom: 15px;
                text-align: center;
            }

            >p {
                font-size: 1rem;
                line-height: 1.5rem;
                margin-bottom: 10px;
            }

            .indus-Cards {
                width: 100%;
                padding: 0;
                gap: 20px 5px;
                /* justify-content: start; */
                align-items: start;
                margin-top: 20px;

                .indus-card {
                    width: 48%;
                    /* min-height: 350px; */
                    padding: 25px 10px !important;

                    i {
                        padding: 10px;
                        margin-bottom: 20px;
                    }

                    h3 {
                        font-size: 1.1rem;
                        margin-bottom: 8px;
                    }

                    p {
                        font-size: 1rem;
                        margin-bottom: 10px;
                    }

                    .tag {
                        margin-top: 10px;
                    }

                }
            }
        }
    }
}

/* industries we serve */


/* why choose us section */
.whyChoose {
    width: 100%;
    height: auto;
    min-height: 600px;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* margin-top: 50px; */
    margin-bottom: 50px;
    /* background: linear-gradient(125deg, #382A4B, #684F88); */
    background: linear-gradient(145deg, #6076da, #744fa9);

    .whychooseContainer {
        width: 100%;
        max-width: 1400px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-top: 50px;
        margin-bottom: 50px;

        >h4 {
            display: inline-block;
            color: #fafafa;
            background-color: #f9f9f940;
            padding: 3px 10px;
            border-radius: 5px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        >h2 {
            font-size: 2.5rem;
            line-height: 3rem;
            margin-bottom: 20px;
            font-weight: 600;
            max-width: 900px;
            color: #fafafa;
            text-align: center;

            .special-heading {
                color: transparent;
                background: linear-gradient(90deg, #f2f2f2, #F3E5FF);
                background-clip: text;
                -webkit-background-clip: text;
            }
        }

        >p {
            font-size: 1.1rem;
            line-height: 1.6rem;
            color: #f9f9f9;
            margin-bottom: 20px;
            max-width: 750px;
            text-align: center;
        }


        .whyCards {
            width: 100%;
            height: auto;
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;

            .why-ch-card {
                width: 48%;
                height: auto;
                padding: 30px 20px;
                border: 1px solid #ddd;
                border-radius: 15px;
                display: flex;
                background: #7d76ce80;
                align-items: center;
                transition: all .3s ease-in-out;
                justify-content: space-around;

                .ch-left {
                    width: 20%;
                    height: auto;
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    i {
                        font-size: 2rem;
                        padding: 15px;
                        color: #fff;
                        border-radius: 12px;
                        background-color: #9597df;
                        transition: all .3s ease-in-out;
                    }

                }

                .ch-right {
                    width: 80%;
                    height: auto;
                    display: flex;
                    align-items: start;
                    justify-content: center;
                    flex-direction: column;

                    h4 {
                        font-size: 1.3rem;
                        line-height: 1.8rem;
                        color: #f9f9f9;
                        margin-bottom: 8px;
                        font-weight: 550;
                        transition: all .3s ease-in-out;

                    }

                    p {
                        color: #f4f4f4;
                        font-size: 1.1rem;
                        transition: all .3s ease-in-out;

                    }
                }
            }

            .why-ch-card:hover {
                transform: translateY(-5px);
            }
        }

    }
}

@media only screen and (max-width:768px) {
    .whyChoose {
        padding: 0 10px;

        .whychooseContainer {
            padding: 0;
            /* margin: 0; */
            margin-top: 30px;
            margin-bottom: 30px;

            h4 {
                font-size: 14px;
                margin-bottom: 10px;
            }

            h2 {
                font-size: 2rem;
                line-height: 2.5rem;
            }

            >p {
                font-size: 1rem;
                line-height: 1.5rem;
                margin-bottom: 10px;
            }

            .whyCards {
                width: 100%;
                flex-wrap: wrap;
                /* gap: 25px; */
                gap: 15px 0px;
                align-items: start;
                justify-content: space-between;

                .why-ch-card {
                    width: 48%;
                    min-height: 280px !important;
                    flex-direction: column !important;
                    align-items: center;
                    padding: 20px 10px !important;

                    .ch-left {

                        i {
                            padding: 10px;
                            font-size: 2rem;
                            border-radius: 8px;
                            margin-bottom: 20px;
                        }
                    }

                    .ch-right {
                        width: 100%;
                        text-align: center !important;
                        justify-content: center;
                        align-items: center;
                        padding: 0;
                        /* background-color: #171717; */

                        h4 {
                            font-size: 1.2rem;
                            line-height: 1.5rem;
                        }

                        p {
                            font-size: 1rem;
                            line-height: 1.4rem;
                        }
                    }

                }
            }
        }
    }
}

/* why choose us section */


/* faq section */
.faqSection {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 50px;

    .faqContainer {
        width: 100%;
        height: auto;
        margin-top: 50px;
        margin-bottom: 50px;
        max-width: 1400px;
        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;
        }

        >h2 {
            font-size: 2.5rem;
            line-height: 3rem;
            margin-bottom: 20px;
            font-weight: 600;

            .special-heading {
                color: transparent;
                background: linear-gradient(90deg, #3B0070, #931BFF);
                background-clip: text;
                -webkit-background-clip: text;
            }
        }

        .faqQuestions {
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 20px;
            margin-top: 40px;
            margin-bottom: 40px;

            .faqCard {
                width: 100%;
                max-width: 1000px;
                height: auto;
                background-color: #fdfdfd;
                padding: 15px;
                border: 1px solid #e8e8e8;
                box-shadow: 4px 4px 30px #3B007010;
                border-radius: 15px;
                transition: all .3s ease-in-out;

                h3 {
                    color: #555;
                    margin-bottom: 5px;
                }

                p {
                    color: #888;
                    font-weight: 400;

                    strong {
                        color: #888;
                        font-weight: 500;
                    }
                }
            }

            .faqCard:hover {
                border: 1px solid #3B0070;
                background: #fff;
                box-shadow: 10px 10px 40px #18181825;
            }
        }
    }
}


@media only screen and (max-width:768px) {
    .faqSection {
        padding: 0 10px;
        margin: 50px 0;
        background-color: #fafafa;

        .faqContainer {
            padding: 0;
            margin: 20px 0;

            h4 {
                font-size: 14px;
                margin-bottom: 10px;
                text-align: center;
            }

            h2 {
                font-size: 2rem;
                line-height: 2.5rem;
                margin-bottom: 15px;
                text-align: center;
            }

            .faqQuestions {
                margin-top: 20px;

                .faqCard {
                    box-shadow: 5px 5px 60px #00000002;
                }
            }

        }
    }
}

/* faq section */

/* testimonial section */
.testimonialSection {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .testiContainer {
        width: 100%;
        height: auto;
        max-width: 1400px;
        margin-top: 40px;
        margin-bottom: 60px;
        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;
        }

        h2 {
            font-size: 2.5rem;
            line-height: 3rem;
            margin-bottom: 20px;
            font-weight: 600;

            .special-heading {
                color: transparent;
                background: linear-gradient(90deg, #3B0070, #931BFF);
                background-clip: text;
                -webkit-background-clip: text;
            }
        }

        .testimonialCards {
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            /* margin-top: 20px; */
            margin-bottom: 40px;

            .swiper {
                width: 100%;
                height: 100%;
                padding: 20px;
            }

            .swiper-slide {
                width: 450px;
                height: 280px;
                margin-top: 30px;
                margin-bottom: 30px;
            }
            
            .testiCard{
                display: flex;
                align-items: start;
                justify-content: space-evenly;
                flex-direction: column;
                padding: 30px 20px;
                background: #fff;
                border-radius: 15px;
                /* border: 1px solid #382A4B15; */
                box-shadow: 0px 5px 10px #00000010;

                .testi-Stars{
                    width: 100%;
                    height: auto;
                    display: flex;
                    align-items: start;
                    justify-content: start;
                    gap: 10px;

                    i{
                        color: #fdc700;
                        font-weight: 500;
                        font-size: 1.1rem;
                    }
                }

                .Review{

                    p{
                        font-size: 1.1rem;
                        color: #525252;
                    }
                }

                .reviewer{

                    h5{
                        color: #181818;
                        font-size: 1.1rem;
                        font-weight: 550;
                        margin-bottom: 5px;
                    }

                    small{
                        font-size: 1rem;
                        font-weight: 450;
                        color: #333;
                    }
                }
            }

        }

    }
}

@media only screen and (max-width:768px) {
    .testimonialSection{
        padding: 0;
        margin: 0;

        .testiContainer{

            > h4{
                font-size: 14px;
                margin-bottom: 10px;
                padding: 0 10px;
            }

            > h2{
                font-size: 2rem;
                max-width: 95%;
                line-height: 2.5rem;
                text-align: center;
                padding: 0 10px;
                margin: 0;
            }

            .testimonialCards{
                margin: 0;
                padding: 0;
            }
        }
    }    
}
/* testimonial section */


/* cta section */
.ctaSection {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .ctaContainer {
        width: 100%;
        height: auto;
        max-width: 1400px;
        margin-bottom: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* padding: 80px 60px; */
        /* background: linear-gradient(140deg, #6076da, #684F88); */
        background: linear-gradient(140deg, #382A4B, #684F88, #9174B8, #574270);
        border: 0.5px solid #382A4B40;
        border-radius: 25px;
        overflow: hidden;
        position: relative;

        .absolute-circle {
            position: absolute;
            right: -80px;
            top: -100px;
            background-color: #fff;
            border-radius: 50%;
            width: 500px;
            height: 500px;
        }

        .absolute-circle-2 {
            position: absolute;
            right: -170px;
            top: -180px;
            /* background-color: #fff; */
            background: none;
            border: 30px solid #fff;
            border-radius: 50%;
            width: 650px;
            height: 650px;
            z-index: 8;
        }

        .cta-left {
            width: 60%;
            height: auto;
            padding: 80px 50px;

            h4 {
                display: inline-block;
                /* font-size: 1.1rem; */
                background-color: #F3E5FF;
                padding: 3px 10px;
                border-radius: 5px;
                margin-bottom: 20px;
                font-weight: 500;

            }

            h2 {
                font-size: 2.5rem;
                line-height: 3rem;
                margin-bottom: 30px;
                max-width: 70%;
                color: #fafafa;
            }

            >p {
                color: #fbfbfb;
                font-size: 1.1rem;
                max-width: 70%;
                text-align: left;
                margin-bottom: 50px;
            }

            .cta-btn {
                border: 1px solid #fdfdfd;
                background-color: #f9f9f9;
                color: #171717;
                padding: 10px 20px;
                border-radius: 15px;
                transition: all .3s ease-in-out;

            }

            .cta-btn:hover {
                transform: translateX(5px);
            }

        }

        .cta-right {
            width: 40%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            z-index: 9;

            img {
                width: 100%;
                height: auto;
            }
        }
    }
}

@media only screen and (max-width:768px) {
    .ctaSection {
        padding: 0 10px;

        .ctaContainer {
            padding: 0;
            flex-wrap: wrap;
            border-radius: 15px;
            border: none;

            .absolute-circle,
            .absolute-circle-2 {
                display: none;
            }

            .cta-left {
                display: block;
                width: 100%;
                padding: 50px 20px;
                align-items: center;
                text-align: center;
                justify-content: center;
                flex-direction: column;

                h4 {
                    text-align: center;
                    display: inline-block;
                    font-size: 14px;
                    margin-bottom: 10px;
                }

                h2 {
                    font-size: 2rem;
                    line-height: 2.5rem;
                    width: 100%;
                    max-width: 100%;
                    margin-bottom: 15px;
                }

                >p {
                    font-size: 1rem;
                    line-height: 1.4rem;
                    text-align: center;
                    max-width: 100%;
                    width: 100%;
                    margin-bottom: 40px;
                }

            }

            .cta-right {
                display: none !important;
            }
        }
    }
}

/* cta section */


/* footer section */
.footer-Section {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 50px;
    box-shadow: -2px 0 10px #382A4B25;

    .footerContainer {
        width: 100%;
        height: auto;
        max-width: 1400px;
        margin-bottom: 30px;
        display: flex;
        align-items: start;
        justify-content: space-between;
        gap: 40px;
        margin-top: 50px;
        /* padding: 30px 0; */

        .footer-Child-1 {
            width: 25%;
            height: auto;
            overflow: hidden;
            display: flex;
            align-items: start;
            justify-content: start;
            flex-direction: column;

            img {
                width: 200px;
                height: auto;
                margin-bottom: 20px;
            }

            p {
                color: #333;
                margin-bottom: 30px;
            }

            h5 {
                font-size: 1rem;
                color: #222;
                margin-bottom: 15px;
            }

            .foot-social {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 20px;
                margin-bottom: 30px;

                a>i {
                    font-size: 1.1rem;
                    color: #382A4B;
                    padding: 8px;
                    border-radius: 10px;
                    background-color: #E9CFFF;
                }
            }


        }

        .footer-Child-2,
        .footer-Child-3,
        .footer-Child-4 {
            width: 25%;
            height: auto;
            min-height: 200px;
            overflow: hidden;
            display: flex;
            align-items: start;
            justify-content: flex-start;
            flex-direction: column;

        }

        .footer-Child-2 {

            h4 {
                font-size: 1.2rem;
                color: #181818;
                margin-bottom: 10px;
                font-weight: 600;
            }

            ul>li {
                list-style: none;
                margin-bottom: 8px;
            }

            a {
                font-size: 1rem;
                font-weight: 450;
                color: #262626;

                i {
                    font-size: 1rem;
                    color: #3B0070;
                }
            }

        }

        .footer-Child-3 {

            h4 {
                font-size: 1.2rem;
                color: #181818;
                margin-bottom: 10px;
                font-weight: 600;
            }

            ul>li {
                list-style: none;
                margin-bottom: 8px;
            }

            a {
                font-size: 1rem;
                font-weight: 450;
                color: #262626;
            }
        }

        .footer-Child-4 {

            h4 {
                font-size: 1.2rem;
                color: #181818;
                margin-bottom: 10px;
                font-weight: 600;
            }
        }

        a {
            font-size: 1rem;
            font-weight: 450;
            color: #262626;
            margin-bottom: 8px;

            i {
                font-size: 1rem;
                color: #3B0070;
            }
        }

        p {
            font-size: 1rem;
            font-weight: 450;
            color: #262626;

            i {
                font-size: 1rem;
                color: #3B0070;
            }
        }

    }

    .foot-hr {
        width: 100%;
        max-width: 1400px;
        height: 1.5px;
        background-color: #363545;
        border: none;
        border-radius: 50px;
    }

    .foot-legal {
        width: 100%;
        height: auto;
        max-width: 1400px;
        margin-top: 20px;
        margin-bottom: 20px;
        /* padding: 0 20px; */
        display: flex;
        align-items: center;
        justify-content: space-between;

        .f-left {
            width: 50%;

            p {
                font-size: 1rem;
                color: #525252;
            }
        }

        .f-right {
            width: 50%;
            display: flex;
            align-items: center;
            justify-content: end;
            gap: 20px;

            a {
                font-size: 1rem;
                color: #525252;
            }
        }
    }
}

@media only screen and (max-width:768px) {
    .footer-Section {
        padding:0 10px;

        .footerContainer {
            padding: 0;
            margin-bottom: 0 !important;
            flex-wrap: wrap;

            .footer-Child-1 {
                width: 100%;
                height: auto;
            }

            .footer-Child-2,
            .footer-Child-3 {
                width: 45%;
                max-width: fit-content;
                height: auto;
            }

            .footer-Child-4 {
                width: 100%;
                height: auto !important;
                min-height: auto !important;
                margin-bottom: 40px;
            }

            .foot-hr {
                width: 100%;
                height: 1px;
            }

        }

        .foot-legal {
            width: 100%;
            /* margin-top: 0px !important; */
            flex-wrap: wrap !important;
            flex-direction: column !important;
            align-items: center;
            text-align: center;
            justify-content: center;


            .f-left,
            .f-right {
                width: 100% !important;
                max-width: 100%;
                margin-bottom: 10px;
                height: auto;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }
    }
}

/* footer section */