@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
    --primary-color: #000120;
    --secondary-color: #ffffff;
    --title-head-color: #333333;
    --title-content-color: #102447;
    --white-color: #ffffff;
    --title-border-color: #095DCF;
    --back-gradient-color: #2a2a35;
}

* {

}


body {
    font-family: 'Mulish', sans-serif;
    line-height: 24px;
    font-size: 16px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    justify-content: center;
    overflow-x: hidden;


    margin: 0;
    padding: 0;
    align-items: center;
    min-height: 100vh;
}

.container {
    margin-top: 0;
    margin-bottom: 0;
    width: auto;
    box-sizing: border-box;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6, p, a, span {
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4 {
    letter-spacing: 0.5rem
}

h1 {
    line-height: 90px;
    font-size: 64px;
    font-weight: 800;
}

h2 {
    line-height: 90px;
    font-size: 50px;
    font-weight: 800;
}

h3 {
    line-height: 40px;
    font-size: 32px;
    font-weight: 700;
}

h4 {
    line-height: 30px;
    font-size: 24px;
    font-weight: 700;
}

h5 {
    line-height: 27px;
    font-size: 20px;
    font-weight: 700;
}

span {
    line-height: 27px;
    font-size: 20px;
    font-weight: 700;
}

button {
    padding: 10px 30px;
    margin: 20px 0;
    background-color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    cursor: pointer;
    color: var(--secondary-color);
}


/* Small Mobile Size*/
@media (max-width: 450px) {
    h1, h2, h3, h4 {
        letter-spacing: 0.2rem
    }

    h1 {
        line-height: 48px;
        font-size: 32px;
        font-weight: 800;
    }

    h2 {
        line-height: 42px;
        font-size: 28px;
        font-weight: 800;
    }

    h3 {
        line-height: 36px;
        font-size: 24px;
        font-weight: 700;
    }

    h4 {
        line-height: 28px;
        font-size: 20px;
        font-weight: 700;
    }

    h5 {
        line-height: 22px;
        font-size: 16px;
        font-weight: 700;
    }

}

/*Large Screen Size*/
@media (min-width: 768px) {

}

/*Small to Large Screen Stable Size*/
@media (max-width: 1280px) {
    .container {
        margin: auto;
        max-width: calc(100% - 4rem);
    }
}

/*Extra Large Screen Stable Size*/
@media (min-width: 1281px) {
    .container {
        width: 1280px;
        margin: auto;
    }
}


/* Common Header section */
#header {
    position: relative;
    z-index: 50;

    .header-section {
        position: fixed;
        top: 0;
        width: 100%;
    }

    .header-bg-transparent {
        background-color: #052F69dd;
    }

    .header-bg-primary {
        background-color: var(--primary-color);
    }

    .header-bg-single {
        background-color: #052F69;
    }

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
        padding: 20px 0;
        overflow: visible;
    }

    .request-btn {
        border: 2px solid #596CB3;
        color: var(--secondary-color);
    }

    .menu-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 15px 30px;
        width: 100%;
        list-style-type: none;
        padding-left: 0;

        li {
            margin-left: auto;
            margin-right: auto;
        }
    }

    .nav ul li a {
        text-decoration: none;
        color: var(--secondary-color);
    }

    .nav li {
        position: relative;
    }

    .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #9999a6;
        min-width: 160px;
        box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
        border-radius: 5px;
        padding: 0;
        z-index: 1;
        left: -50%;
    }

    .dropdown-content a {
        color: var(--title-content-color) !important;
        font-weight: bold;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

    .dropdown-content li {
        list-style-type: none;
        border-bottom: 1px solid #b1b5bd;
    }

    .dropdown-content li:last-child {
        border-bottom: none;
    }

    .dropdown-content li:hover {
        background-color: #D9D9D9;
        border-radius: 5px;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .dropdown:hover .arrow {
        transform: rotate(180deg);
    }

    .dropdown-btn {
        display: flex;
        align-items: center;
        font-size: inherit;
        cursor: pointer;
    }

    .arrow {
        margin-left: 5px;
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid var(--secondary-color);
    }

    .mobile-menu-list {
        left: -420px;
        /* bottom: -0px; */
    }

    .mobile-toggle {
        margin-right: 0;
    }

    .logo-img {
        margin-left: 0;
    }
}

/* Common Footer section */
#footer {
    background-color: white;

    .footer {
        background-image: url("/img/background.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        color: var(--primary-color);
        padding-top: 50px;
        padding-bottom: 5px;

        .container {
            margin-bottom: 10px;
        }

        .content {
            display: flex;
            width: 100%;

        }
    }

}


/* Common Components Mobile View */
@media (max-width: 768px) {

/* Common Header section */
#header {
    .header {
        padding: 7px 0;
    }
    .popup {
        display: none;
        position: fixed;
        top: 0; 
        left: 0;
        width: 100%; 
        height: 100%;
        background: #000120;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .popup {
        /* background: #000120;
        padding: 20px;
        border-radius: 5px;
        text-align: center;
        width: 100vw;
        height: 220vw; */

        p{
            font-size: 20px;
            color: white;
            padding: 20px;
        }

        a:link, a:visited {
            /* background-color: rgb(0, 0, 0); */
            /* color: rgb(255, 255, 255); */
            /* border: 2px solid rgb(74, 74, 74); */
            /* padding: 10px 500px; */
            text-align: center;
            text-decoration: none;
            display: inline-block;
            width:200px;
          }

          #icon-banner:hover, #icon-banner:active {
            background-color: #052F69;
            color: white;
          }

        .popup-content-list{
            margin-top: 10px;
            /* margin-right: 65px; */
            margin-left: -155px;
            /* width: 200px;
            position: absolute;
            left: 70px;
            top: 170px; */
        }

        .popup-content-icon{
            position: absolute;
            /* left: 180px; */
            top: 90px;
            right: -30px;
        }

        #popup-content-hr{
            border: 1px solid #095DCF80;
            margin-left: 36px;
            margin-right: 47px;
        }
    }
    .popup:target {
        display: flex;
    }




    .large-view {
        display: none;
    }

    .mobile-nav.active {
        display: block;
        position: absolute;
    }

    .mobile-menu-list {
        display: block;
        position: relative;
    }

    .mobile-nav {
        display: none;

        .close-icon{
            padding-left: 420px;
            padding-top: 30px;
            background-color: #000120;
        }

        ul li {
            padding: 20px;
            list-style-type: none;
            /* border-bottom: 1px solid #b1b5bd; */
            /* border-radius: 5px; */
            width:100vw;
            /* height:40vh; */
        }

        ul li:last-child {
            border-bottom: none;
        }

        ul li:hover {
            background-color: #D9D9D9;
        }

        ul li a {
            font-weight: bold;
            text-decoration: none;
            /* color: var(--title-content-color);
            white-space: nowrap; */
            color: #FFFFFF;
            font-size: 28px;
        }

        ul {
            background-color: #000120;
            border-radius: 5px;
            list-style-type: none;
            padding: 0;
            height: 800px;
            padding-left: 150px;
            padding-top: 200px;
        }
    }

    .mobile-toggle {
        display: block;
    }

    .menu-icon {
        display: block;
        background-color: transparent;
        border: none;
        font-size: 24px;
        color: white;
        cursor: pointer;
        padding-left: 0;
        padding-right: 0;
    }

    .mobile-toggle {
        display: block;
    }
}



    /* Common Footer section */
    #footer {
        .footer {
            .content {
                .logo-sec {
                    display: flex;
                    flex-direction: column;
                    align-items: center;

                    img {
                        width: 300px;
                    }

                    .small-view-content {
                        color: #102447;
                        margin-top: 30px;
                        text-align: center;
                        display: block;

                        hr {
                            border: 1px solid #ddd;
                            margin: 20px 0;
                        }

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

                        li {
                            margin-bottom: 10px;
                        }

                        a {
                            text-decoration: none;
                            color: #102447;
                        }

                        a:hover {
                            text-decoration: underline;
                        }
                    }

                }

                .info-sec {
                    display: none;
                }
            }


            .copyright {
                text-align: center;
            }
        }

    }

}

/* Common Components Large Screen View*/
@media (min-width: 768px) {

    /* Common Header section */
    #header {
        .large-view {
            display: block;
        }

        .mobile-toggle {
            display: none;
        }

        .mobile-nav {
            display: none;
        }
    }

    /* Common Footer section */
    #footer {
        .footer {

            .content {
                gap: 20px;
                padding-bottom: 30px;

                .logo-sec {
                    flex: 1;

                    .small-view-content {
                        display: none;
                    }
                }

                .info-sec {
                    flex: 3;
                    display: flex;
                    flex-wrap: wrap;
                    gap: 150px;

                    h4 {
                        line-height: 30px;
                        text-transform: uppercase;
                        letter-spacing: 0;
                        margin-bottom: 20px;
                    }

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

                    li {
                        margin-bottom: 5px;
                    }

                    a {
                        text-decoration: none;
                        color: #102447;
                    }

                    a:hover {
                        text-decoration: underline;
                    }

                }

            }
        }

    }

}
/*Not found common page*/
#not-found-page {
    .content {
        margin-top: 15rem;
        margin-bottom: 11rem;
        height: 100%;

        .return-btn {
            padding: 10px;
            border-radius: 10px;
            border: 3px solid white;
            margin-top: 20px;
            margin-bottom: 20px;
            width: fit-content;

            a {
                color: white;
                text-decoration: none
            }
        }
    }
}


/*Full page banner common section*/
#full-page-banner {
    /*Full page banner section*/

    .main-banner {
        background-image: url("/img/service_page/service-main-banner.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 100vh;
        color: var(--secondary-color);
        padding-top: 30px;
        position: relative;
        z-index: 2;

        .banner-content {
            display: flex;
            height: 100%;
            justify-content: space-between;

            .banner-title {
                h3 {
                    border-top: 3px solid var(--title-border-color);
                    width: fit-content;
                    margin-bottom: 20px;
                }
            }

            .social-icons {
                width: fit-content;
                flex-direction: column;
                margin: 10rem 0 0 0;
                gap: 25px;
            }
        }
    }


    /* Mobile View */
    @media (max-width: 768px) {

        /*Full page banner common section*/
        .main-banner {

            .banner-content {
                margin-top: 9rem;


                .social-icons {
                    display: none;
                }
            }
        }


    }


    /* Large Screen View*/
    @media (min-width: 768px) {

        /*Full page banner common section*/
        .main-banner {

            .banner-content {
                margin-top: 9rem;


                .social-icons {
                    display: flex;
                }
            }
        }


    }
}

/*Half page banner common section*/
#half-page-banner {
    /*Half page banner section*/

    .main-banner {
        background-image: url("/img/contact_us/contact-us-banner.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 70vh;
        color: var(--secondary-color);
        padding-top: 30px;
        position: relative;
        z-index: 2;

        .banner-content {
            display: flex;
            height: 100%;
            justify-content: space-between;

            .banner-title {
                h3 {
                    border-top: 3px solid var(--title-border-color);
                    width: fit-content;
                    margin-bottom: 20px;
                }
            }

            .social-icons {
                width: fit-content;
                flex-direction: column;
                margin: 2rem 0 0 0;
                gap: 25px;
            }
        }
    }


    /* Mobile View */
    @media (max-width: 768px) {

        /*Full page banner common section*/
        .main-banner {

            .banner-content {
                margin-top: 9rem;


                .social-icons {
                    display: none;
                }
            }
        }


    }


    /* Large Screen View*/
    @media (min-width: 768px) {

        /*Full page banner common section*/
        .main-banner {

            .banner-content {
                margin-top: 9rem;


                .social-icons {
                    display: flex;
                }
            }
        }


    }
}


/* Single service process common section*/
#single-service-process-section {

    #single-services-list .single-services:nth-child(even) {
        background-color: var(--primary-color);
        color: var(--white-color);
    }

    /* Select odd-numbered child divs */

    #single-services-list .single-services:nth-child(odd) {
        background-color: var(--white-color);
        color: #101825;

        .single-service-title {
            h3 {
                color: #333333;
            }
        }
    }

    .single-services {

        .text-section {
            display: -webkit-flex;
            display: flex;
            padding-bottom: 11rem;

        }

        .text-nav {
            -webkit-flex: 1;
            -ms-flex: 1;
            flex: 1;
        }

        .text-article {
            -webkit-flex: 1;
            -ms-flex: 1;
            flex: 1;
            width: auto;

            .mobile-app-development-img {
                max-width: 100%;
                height: auto;
                position: relative;
                top: 185px;
                left: 50px;


            }
        }


        .single-service-content {
            padding-top: 5rem;
            /* padding-bottom: 5rem; */


            .pro-item-title {
                display: flex;
                flex-direction: row;
                align-items: center;
                height: auto;
                position: relative;
                top: 50px;
                left: -30px;
            }

            .box-text {
                left: 100px;
                position: relative;

                .single-feature-item {
                    display: flex;
                    align-items: start;
                    margin-left: 0;
                    margin-right: 0;
                }

                .single-feature-item svg {
                    width: 50px;
                    height: 50px;
                    margin-right: 20px;
                    position: relative;
                    top: 10px;
                    left: 10px;
                }

                .single-feature-item .single-circle {
                    fill: none;
                    stroke: #0056b3;
                    stroke-width: 2;
                    stroke-dasharray: 56.55;
                    stroke-dashoffset: 14.14;
                }

                .single-feature-item .single-check {
                    stroke: #0056b3;
                    stroke-width: 3;
                    fill: none;
                    stroke-linecap: round;
                    stroke-linejoin: round;
                }


                h3 {
                    font-style: Mulish;
                    color: #ffffff;
                    padding: 10px;
                }

                p {
                    font-style: Mulish;
                    color: #ffffff;
                    padding: 10px;
                }

                .box-one {
                    position: relative;
                    z-index: 1;
                    height: 175px;
                    width: 457px;
                    background: #102447;
                    border-radius: 8px;
                    padding: 15px;
                }

                .box-two {
                    position: absolute;
                    z-index: 2;
                    background: #052F69;
                    width: 457px;
                    left: 25%;
                    top: 70px;
                    height: 175px;
                    opacity: 1.9;
                    border-radius: 8px;
                    padding: 15px;
                }

                .box-three {
                    position: absolute;
                    z-index: 3;
                    background: #102447;
                    width: 457px;
                    left: -50px;
                    top: 157px;
                    height: 175px;
                    border-radius: 8px;
                    padding: 15px;
                }
            }


            .single-service-title {


                h3 {
                    border-left: 3px solid var(--title-border-color);
                    padding-left: 20px;
                    text-transform: uppercase;
                    line-height: 40px;
                    font-size: 32px;
                    font-weight: 700;
                    letter-spacing: 0.2rem
                }

                p {
                    padding-left: 23px;
                    margin-top: 10px;
                    margin-bottom: 10px;
                }
            }

            /* .stacks {
                ul {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    text-decoration: none;
                    row-gap: 20px;

                    li {
                        list-style-type: none;

                    }
                }
            } */
        }
    }

    /*my oness*/

    /* Mobile View */
    @media (max-width: 768px) {
        .text-section {
            -webkit-flex-direction: column;
            flex-direction: column;
        }


    }

    /* Large Screen View*/
    @media (min-width: 768px) {


    }
}


/* Single service feature common section*/
#single-service-feature-section {

    body {
        height: 807px;
        background: var(--New-Vic, linear-gradient(180deg, #111926 0%, #000E22 100%));
        display: flex;
        justify-content: center;
    }

    .rectangletop {
        width: 100px;
        height: 3px;
        background: #095DCF;
        margin-top: 50px;
        margin-left: 45%;
        margin-bottom: 5%;
    }

    .FeaturesTopic {
        color: #FFF;
        text-align: center;
        font-size: 32px;
        font-weight: 700;
        letter-spacing: 3.2px;
        text-transform: uppercase;
        margin-top: 20px;
        margin-left: -50px;
    }

    .description {
        color: #FFF;
        text-align: center;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        width: 410px;
        height: 47px;
        margin-left: -150px;
        margin-top: 40px;
    }

    .cards {
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 50px;
        margin-top: 150px;
    }

    .cardOne, .cardtwo {
        width: 368px;
        height: 468px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }


    .cardOne {
        border: 3px solid #FFF;
        background: #00B4D7;
    }


    .cardtwo {
        background: #A7CCFF;
        display: flex;
        flex-direction: column;
        border: 3px solid #A7CCFF;

    }

    .cardtwotop {
        width: 100%;
        height: 50px;
        background: #052F69;
        color: white;
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        border-bottom: 3px solid #A7CCFF;
    }


    .cardoneimage, .cardtwoimage {
        width: 287px;
        height: 190px;
        margin-top: 50px;
    }

    .cardtwoimage {
        margin-top: 50px;

    }


    .cardonetopic {
        font-size: 22px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-top: 20px;
        padding-right: 10px;
        padding-left: 10px;
        border-left: 2px solid #095DCF;
        line-height: 1;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .cardtwotopic {
        font-size: 22px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-top: -380px;
        padding-right: 10px;
        padding-left: 10px;
        border-left: 2px solid #095DCF;
        line-height: 1;
        padding-top: 5px;
        padding-bottom: 5px;

    }


    .cardonetopic {
        color: #FFF;
    }

    .cardtwotopic {
        color: #052F69;

    }


    .cardonepara, .cardtwopara {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        width: 299px;
        height: 47px;
        margin-left: 30px;
        margin-top: 20px;
    }

    .cardonepara {
        color: #FFF;
    }

    .cardtwopara {
        color: #052F69;
    }


    /* Mobile View */
    @media (max-width: 768px) {

        .rectangletop {
            width: 100px;
            height: 3px;
            background: #095DCF;
            margin-top: 10px;
            margin-left: 35%;
            margin-bottom: 5%;


        }

        .FeaturesTopic {
            font-size: 14px;
            letter-spacing: 1px;
            margin-left: 0;
            margin-top: 1px;


        }

        .description {
            font-size: 12px;
            max-width: 90%;
            margin: -10px auto 10px auto;
            text-align: center;
            display: block;
            white-space: normal;
            line-height: 18px;


        }

        .cards {
            flex-direction: column;
            gap: 3px;
            margin-top: 170px;
        }

        .cardOne, .cardtwo {
            width: 90%;
            height: auto;
        }

        .cardoneimage, .cardtwoimage {
            width: 100%;
            height: auto;
        }

        .cardonetopic, .cardtwotopic {
            font-size: 18px;
            margin-top: 10px;
        }

        .cardonepara, .cardtwopara {
            font-size: 12px;
            width: 90%;
            margin-left: 2px;
        }


    }


    /* Large Screen View*/
    @media (min-width: 768px) {

        .cards {
            gap: 80px;
            margin-top: 180px;
        }

        .FeaturesTopic {
            font-size: 36px;
            letter-spacing: 4px;
            margin-top: 20px;
        }

        .description {
            font-size: 18px;
            width: 500px;
            margin-top: 30px;
        }

        .cardOne, .cardtwo {
            width: 380px;
            height: 480px;
        }

        .cardoneimage, .cardtwoimage {
            width: 300px;
            height: 200px;
        }

        .cardonetopic {
            font-size: 24px;
            margin-top: 40px;
            margin-left: 15px;
        }

        .cardtwotopic {
            font-size: 24px;
            margin-top: 40px;
        }

        .cardonepara, .cardtwopara {
            font-size: 16px;
            width: 320px;
        }

        .cardonerec, .cardtworec {
            width: 60px;
            height: 3px;
            margin-top: -80px;
        }


    }
}


/* Single service technologies common section */
#single-service-technologies-section {

    .tec-sec {
        background-color: var(--white-color);

        .tech-content {
            margin-top: 60px;
            margin-bottom: 60px;

            .title-part {

                h3 {
                    color: var(--title-head-color);
                    border-left: 3px solid var(--title-border-color);
                    padding-left: 20px;
                    text-transform: uppercase;
                }

                p {
                    color: var(--title-content-color);
                    padding-left: 23px;
                    margin-top: 30px;
                    margin-bottom: 30px;
                }

            }

            .tech-icons-part {
                display: grid;
                column-gap: 15px;
                row-gap: 30px;

                div {
                    display: flex;
                    width: 100%;
                    justify-content: center;
                    align-items: center;
                }
            }
        }
    }


    /* Mobile small View */
    @media (max-width: 550px) {
        .tec-sec {

            .tech-content {

                .title-part {
                    width: 100%;
                }

                .tech-icons-part {
                    grid-template-columns: repeat(1, 1fr);
                }
            }
        }

    }

    /* Mobile large View */
    @media only screen and (min-width: 550px) and (max-width: 850px) {
        .tec-sec {

            .tech-content {

                .title-part {
                    width: 100%;
                }

                .tech-icons-part {
                    grid-template-columns: repeat(2, 1fr);
                }
            }
        }

    }


    /* medium Screen View*/
    @media only screen and (min-width: 850px) and (max-width: 1100px) {

        .tec-sec {

            .tech-content {

                .title-part {
                    width: 60%;

                }

                .tech-icons-part {
                    grid-template-columns: repeat(3, 1fr);
                }
            }
        }
    }

    /* Larger Screen View*/
    @media only screen and (min-width: 1100px) {

        .tec-sec {

            .tech-content {

                .title-part {
                    width: 60%;

                }

                .tech-icons-part {
                    grid-template-columns: repeat(4, 1fr);
                }
            }
        }
    }
}


/* Get in touch common section*/
#get-in-touch-section {

    .get-in-touch {
        background-color: var(--white-color);

        .content {
            margin-top: 5rem;
            margin-bottom: 5rem;
            display: flex;
            gap: 20px;

            .text-sec {

                h1 {
                    color: var(--title-content-color);
                }

                h3 {
                    color: var(--title-head-color);
                    text-transform: uppercase;
                    margin-top: 30px;
                    margin-bottom: 30px;
                }
            }

            .btn-sec {

                button {
                    background-color: var(--white-color);
                    color: var(--title-content-color);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 15px;
                    border: 2px solid #596CB3;
                }

            }

        }
    }


    /* Mobile View */
    @media (max-width: 768px) {
        .get-in-touch {

            .content {
                flex-direction: column;

                .text-sec {
                    width: 100%;
                }
            }
        }

    }


    /* Large Screen View*/
    @media (min-width: 768px) {

        .get-in-touch {

            .content {
                align-items: end;

                .text-sec {
                    width: 70%;
                }

            }
        }
    }
}


/* Single service faq common section*/
#single-service-faq-section {

    .faq-sec {
        background-color: var(--primary-color);
        color: var(--white-color);

        .faq-content {
            margin-top: 5rem;
            margin-bottom: 5rem;

            .title {
                text-align: center;

                .title-top {
                    display: block;
                    width: 8rem;
                    height: 3px;
                    margin: auto;
                    margin-bottom: 1rem;
                    background-image: linear-gradient(to right, #052F69, #095DCF);
                }

                h3 {
                    text-transform: uppercase;
                }

            }


            .accordion {
                margin: 50px 0 50px 0;

                width: 100%;
                overflow: hidden;

                .accordion-item {
                    border-bottom: 1px solid var(--white-color);
                    margin: 10px 0 10px 0;
                }

                .accordion-title {
                    padding: 15px;
                    background: var(--primary-color);
                    color: var(--white-color);
                    cursor: pointer;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;

                    h3 {
                        letter-spacing: 0.2rem
                    }
                }

                .accordion-title:hover {
                    background: #040539;
                }

                .accordion-title.active {
                    background: #A7CCFF;
                    color: #102447;
                }

                .accordion-content {
                    display: none;
                    background-color: var(--primary-color);
                    padding: 15px;
                    margin-top: 15px;
                    margin-bottom: 15px;
                }
            }

        }
    }


    /* Mobile View */
    @media (max-width: 768px) {
        .faq-sec {
            .faq-content {
                .accordion {
                    .accordion-title {
                        h3 {
                            letter-spacing: 1px
                        }
                    }
                }
            }
        }

    }


    /* Large Screen View*/
    @media (min-width: 768px) {


    }
}


/* Latest blog common section*/
#latest-blog-section {
    background-color: var(--primary-color);
    color: var(--white-color);
    h3{
        font-style: Mulish;
        font-size: 16px;
        font-weight: bold;
        color: white;
    }
  
    .blog-post-date span{
        font-style: Mulish;
        font-size: 15px;
        font-weight: bold;
        color: #052F69;
    }
  
    .blog-post-author span{
        font-style: Mulish;
        font-size: 15px;
        font-weight: bold;
        color: #052F69;
    }
  
  
    .blog-post-01{
        position: relative;
        .blog-post-img-01{
            background-image: url("/img/blog/blog-post-01.png");
            
  
        }
        .blog-post-01-content{
            position: relative;
            z-index: 1;
        }
  
  
    }
  
    .blog-post-02{
        .blog-post-img-01{
            background-image: url("/img/blog/blog-post-02.png");
  
        }
        .blog-post-02-content{
  
        }
  
    }
  
    .blog-post-03{
        .blog-post-img-01{
            background-image: url("/img/blog/blog-post-03.png");
  
        }
        float: right;
        .blog-post-01-content{
  
        }
  
    }
  
    .blog-post-04{
        .blog-post-img-01{
            background-image: url("/img/blog/blog-post-04.png");
  
        }
        float: left;
  
    }
  
    .blog-post-05{
        .blog-post-img-01{
            background-image: url("/img/blog/blog-post-05.png");
  
        }
  
    }
  
    .blog-post-06{
        .blog-post-img-01{
            background-image: url("/img/blog/blog-post-06.png");
  
        }
        float: right;
  
    }
  
  
    .blog-post-img-01{
        width: 370px;
        height: 248px;
        position: relative;
        z-index: 1;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
  
        .blog-cat-text{
            position: absolute;
            z-index: 2;
            left: 6%;
            top: 20px;
            background-color: #052F69;
            width: auto;
            height: 42px;
            border-radius: 8px;
            padding: 5px;
            opacity: 0.9;
            padding-left: 13px;
            padding-right: 10px;
            
            h3{
                letter-spacing: 0.2rem;
            }
        }
  
        
    }
  
    .blog-cat-dec{
        position: relative;
        z-index: 1;
        width: 370px;
        height: 280px;
  
        p{
            font-style: Mulish;
            font-size: 22px;
            font-weight:bold;
            color: black;
        }
  
  
        .blog-post-date{
            display: flex;
            align-items: center;
            margin-left: 0;
            margin-right: 0;
            gap: 10px 10px;
            margin: 10px 0;
            left: 20px;
            position: absolute;
            z-index: 2;
            left: 5%;
            top: 5px;
    
        }
  
        .blog-post-title{
            position: absolute;
            z-index: 3;
            left: -3%;
            top: 15px;
  
            p{
                font-style: Mulish;
                font-size: 22px;
                color: black;
            }
            #card-text{
                line-height: 25px;
                margin: 30px;
                margin-bottom: 10px;
                text-align: left;
            }
  
            #card-text-content{
                padding: 10px;
                line-height: 20px;
                margin: 20px;
                margin-top: 0px;
                text-align: left;
                font-style: Mulish;
                font-size: 16px;
                color: #696868;
                font-weight: normal;
            }
        }
  
        .blog-post-author{
            display: flex;
            align-items: center;
            margin-left: 0;
            margin-right: 0;
            gap: 10px 10px;
            margin: 10px 0;
            left: 20px;
            position: absolute;
            z-index: 2;
            left: 5.6%;
            top: 230px;
    
        }
        
  
    }
  
    #notext{
        color: white;
    }
    #page-nar-hr + hr{
        display: block;
        margin-top: 0.5em;
        margin-bottom: 0.5em;
        border-style: inset;
        border-width: 1px;
        border: 1px solid #C7C7C7;
        text-align:center;
        width: 945px;
  
    }
    .pagination-bar {
        text-align: center;
        margin-top: 50px;
    }
      
    .pagination {
        display: inline-block;
    }
      
    .pagination a {
        color: black;
        font-weight: bold;
        float: left;
        padding: 8px 10px;
        text-decoration: none;
        transition: background-color .3s;
        margin: 0 8px;
    }
      
    .pagination a.active {
        color: #052F69;
        border: 1px solid #052F69;
        border-radius:3px;
    }
  
    .pagination a.previous {
        color: #A6A6A6;
        border: 1px solid #D3CCCC;
        border-radius:3px;
      }
      
      .pagination a.next {
        color: #052F69;
        border: 1px solid #D3CCCC;
        border-radius:3px;
      }
      
    .pagination a:hover:not(.active) {background-color: #ddd;}
  
  
  
  
  
    /* my one */
    .flex-container {
        /* display: flex;
        flex-wrap: wrap; */
        display: grid;
        gap: 15px 0px;
        grid-template-columns: auto auto auto;
        background-color:#FFFFFF;
        justify-content: center;
        /* position: relative; */
        /* top: 20px; */
        /* padding-bottom: 3rem; */
        padding: 0px;
        margin-top: 15px;
      
      
      
      
      }
      
      .flex-container > div {
        background-color: #F5F5F5;
        border: 2px;
        border-radius: 8px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
        /* width: 371px; */
        /* margin: 28px; */
        text-align: center;
        line-height: 529px;
        font-size: 30px;
        margin-top: 15px;
        margin-right: 15px;
        margin-left: 15px;
      }
      
      .blog-post-img{
        width: 370px;
        height: 248px;
        object-fit: fill;
      }
      
  
  
  
    /*Mobile View */
    @media (max-width: 768px) {
  
  
    }
  
    /*Large Screen View*/
    @media (min-width: 768px) {
  
    }
  }


/*Home page */
#home-page {

    /*Main banner section*/

    .home-banner {
        /*background-image: url("/img/gif/hero-section.gif");*/
        background-image: url("/img/home-banner.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 100vh;
        color: var(--secondary-color);

        h3 {
            text-transform: uppercase;
        }
    }

    #home-banner {
        .main-banner {
            display: flex;
        }

        .main-content {
            flex-grow: 1;
            text-align: center;

            button {
                border-radius: 5px;
                padding-left:  40px;
                padding-right:  40px;
                background-color: transparent;
                

            }
            button:hover{
                background-color:rgb(9, 9, 49);

            }
        }

        .social-media {
            width: fit-content;
            flex-direction: column;
            margin: 12rem 0 0 0;
            gap: 25px;
        }

        .title-top {
            width: 5rem;
            height: 3px;
            margin: auto;
            background-color: var(--title-border-color);
        }
    }


    /*Home page under banner welcome section*/

    .under-banner {
        background-image: url("/img/under-banner.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        color: var(--secondary-color);
        background-blend-mode: lighten;
    }


    #under-banner {
        .welcome-sec {
            display: grid;
            margin-top: 0;
            margin-bottom: 0;
        }

        .wel-content {
            h3 {
                border-left: 3px solid var(--title-border-color);
                padding-left: 20px;
                text-transform: uppercase;
            }

            p {
                padding-left: 23px;
                margin-top: 30px;
                margin-bottom: 30px;
            }

            .wel-btn {
                padding-left: 20px;
            }

            button {
                border-radius: 5px;
                padding-left:  40px;
                padding-right:  40px;
                background-color: transparent;
            }
        }


        /*Award Section */

        .bad-row {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;

            .badge {
                clip-path: polygon(0% 25%, 0% 75%, 50% 100%, 100% 75%, 100% 25%, 50% 0%);
                background-color: var(--secondary-color);
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                color: var(--primary-color);

                .clutch-logo {
                    font-size: 1.5em;
                    font-weight: bold;
                    color: var(--primary-color);
                    margin: 0.2em 0;
                }
            }
        }
    }

    /*Home page special section*/

    #special-sec {
        background-color: var(--secondary-color);

        .special-sec {
            background-image: url("/img/special-sec-background.png");
            background-repeat: no-repeat;
            background-position: right 0;
            background-size: 70% auto;
            color: var(--primary-color);
            padding-top: 60px;
            padding-bottom: 60px;

            .spe-content {
                h3 {
                    border-left: 3px solid var(--title-border-color);
                    padding-left: 20px;
                    text-transform: uppercase;
                }

                p {
                    padding-left: 23px;
                    margin-top: 30px;
                    margin-bottom: 30px;
                }
            }

            .spe-list {
                .features-container {
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: flex-start;
                    gap: 30px 30px;
                    margin: 30px 0;
                }

                .feature-item {
                    display: flex;
                    align-items: start;
                    margin-left: 0;
                    margin-right: 0;
                }

                .feature-item svg {
                    width: 24px;
                    height: 24px;
                    margin-right: 8px;
                }

                .feature-item .circle {
                    fill: none;
                    stroke: #0056b3;
                    stroke-width: 2;
                    stroke-dasharray: 56.55;
                    stroke-dashoffset: 14.14;
                }

                .feature-item .check {
                    stroke: #0056b3;
                    stroke-width: 3;
                    fill: none;
                    stroke-linecap: round;
                    stroke-linejoin: round;
                }

                .feature-item span {
                    font-size: 16px;
                    color: #333;
                }

            }

        }
    }

    /*Latest Project section*/

    #project-sec {
        background-color: var(--secondary-color);

        .project-sec {
            background-image: url("/img/project-background.png");
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center center;
            width: 100%;
            color: var(--primary-color);
            padding-top: 100px;
            padding-bottom: 100px;

            .title-part {
                display: grid;
                margin-top: 20px;
                margin-bottom: 20px;

                h3 {
                    border-left: 3px solid var(--title-border-color);
                    padding-left: 20px;
                    text-transform: uppercase;
                }

                p {
                    padding-left: 23px;
                    margin-top: 30px;
                    margin-bottom: 30px;
                }

            }

            .project-list {
                display: flex;
                flex-direction: row;
                gap: 20px;
                align-items: center;

                .project-item {
                    flex: 2;
                    order: 1;
                    margin-top: 30px;
                    margin-bottom: 30px;

                    .pro-item-title {

                        .project-image {
                            max-width: 100px;
                            max-height: 100px;

                            img {
                                width: 100%;
                                height: 100%;
                            }
                        }
                    }

                }

                .project-img {
                    flex: 3;
                    order: 2;


                    .slider-container {
                        position: relative;
                        height: 300px;
                        overflow: hidden;
                    }

                    .slider {
                        display: flex;
                        transition: transform 0.5s ease-in-out;
                    }

                    .slider img {
                        width: 100%;
                        height: fit-content;
                        flex-shrink: 0;
                    }

                    .button {
                        position: absolute;
                        top: 50%;
                        border: none;
                        padding: 10px 20px;
                        cursor: pointer;
                        height: 20px;
                    }

                    .button.left {
                        left: 10px;
                        background-image: url("/img/previos.png");
                        background-repeat: no-repeat;
                        background-size: contain;

                    }

                    .button.right {
                        right: 10px;
                        background-image: url("/img/next.png");
                        background-repeat: no-repeat;
                        background-size: contain;
                    }
                }
            }

            .partner-sec {
                .partner-info {
                    position: relative;

                    .partnering-content {
                        display: grid;
                        position: relative;
                        top: 0;
                        margin-top: 0;
                        margin-bottom: 0;

                        .partner-title {
                            h3 {
                                border-left: 3px solid var(--title-border-color);
                                padding-left: 20px;
                                text-transform: uppercase;
                            }

                            p {
                                padding-left: 23px;
                                margin-top: 30px;
                                margin-bottom: 30px;
                            }
                        }
                    }

                    .partner-logos {
                        top: 0;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;

                        .logo-scrollable {
                            position: relative;

                            .scrollable-item-wrap {
                                display: flex;
                                flex-direction: row;
                                align-items: center;
                                position: absolute;
                                gap: 25px;
                                overflow-x: auto;
                            }
                        }
                    }
                }
            }
        }
    }

    /*Blog & Article section*/

    #blog-section {

        padding-top: 60px;
        padding-bottom: 60px;

        .title-sec {
            .title {
                display: flex;
                flex-direction: column;

                h3 {
                    margin-top: 15px;
                    margin-bottom: 30px;
                    text-transform: uppercase;
                }

            }
        }

        .blogs-handle {
            display: flex;
            flex-direction: row;
            align-items: center;
            width: 100%;

            .blog-prev, .blog-next {
                cursor: pointer;
                transform: translateY(-50%);
                font-size: 50px;
                color: white;
                margin: 10px;
                border-radius: 50%;
            }

            .blog-slider-container {
                display: flex;
                width: 100%;
                max-width: fit-content;
                margin-top: 60px;
                margin-bottom: 60px;

                .blog-slider {
                    display: flex;
                    overflow: hidden;
                    width: 100%;
                    gap: 20px;

                    .blog-card {

                        width: 33.33%;
                        background-color: var(--secondary-color);
                        border-radius: 15px;

                        .blog-img {
                            width: 100%;
                            height: 200px;
                            border-radius: 15px 15px 0 0;
                        }

                        .card-content {
                            border-radius: 0 0 15px 15px;
                            color: var(--primary-color);
                            background-color: var(--secondary-color);
                            height: 380px;
                            padding: 20px;

                            display: flex;
                            flex-direction: column;

                            .date-sec {
                                display: flex;
                                align-items: center;
                                gap: 20px;

                                img {
                                    width: 20px;
                                    height: 20px;
                                }

                                p {
                                    color: #959595;
                                }
                            }

                            h5 {
                                margin-top: 25px;
                                margin-bottom: 25px;
                            }

                            .card-read-tag {
                                margin-top: auto;

                                a {
                                    color: #052F69;
                                }
                            }
                        }
                    }

                }

            }
        }


    }

    /*Service Section*/

    #service-sec {
        color: var(--secondary-color);

        .background-service {
            position: relative;

            .left-line {
                z-index: 10;
                position: relative;
                margin-top: 0;
                margin-bottom: 0;
            }

            .left-image, .right-image {
                width: 50%;
            }

            .image-container {
                display: flex;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                position: absolute;
                z-index: 2;
            }

            .background-white-gradient {
                display: flex;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                position: absolute;
                z-index: 4;
                background-image: linear-gradient(to right, black 30%, white 100%);
                opacity: 40%;
            }

            .background-gradient {
                display: flex;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                position: absolute;
                z-index: 5;
                background-image: linear-gradient(to right, #102447 30%, #052F69 100%);
                opacity: 40%;
            }

        }

        .service-sec {
            display: grid;
            gap: 30px;
            padding: 100px 0;

            .service-title {
                order: 2;
            }

            .service-list {
                order: 1;
                display: flex;
                flex-direction: column;
                gap: 100px;

                h4 {
                    letter-spacing: 0;
                    padding-left: 20px;
                    border-left: 2px solid #FFFFFF;
                }

                p {
                    margin-left: 20px;
                    margin-top: 20px;
                }

            }

            .service-list > :nth-child(2) {

                .horzon-hr {
                    display: none;
                }


            }

            .title-content {
                h3 {
                    border-left: 3px solid var(--title-border-color);
                    padding-left: 20px;
                    text-transform: uppercase;
                }

                p {
                    padding-left: 23px;
                    margin-top: 30px;
                    margin-bottom: 30px;
                }
            }
        }

    }


    /*Mobile View */
    @media (max-width: 768px) {


        /*Main banner section*/
        .home-banner {
            margin-top: 9rem;
        }


        .main-content {
            margin-top: 30px;
            margin-bottom: 30px;

            h3 {
                margin-top: 5px;
                margin-bottom: 5px;
            }

            p {
                margin-top: 5px;
                margin-bottom: 5px;
            }

        }


        .social-media {
            display: none;
        }

        /*Home page under banner welcome section*/
        #under-banner {
            .welcome-sec {
                grid-template-columns: 1fr;
                padding-top: 50px;
                padding-bottom: 50px;
            }

            /*Award Section */

            .bad-row {
                margin-top: 80px;
                margin-bottom: 80px;

                .badge {
                    width: 140px;
                    height: 160px;

                    img {
                        width: 100%;
                        height: 100%;
                    }
                }

                .badge-position {
                    position: relative;
                    bottom: 45px;
                }
            }
        }


        /*Latest Project section*/
        #project-sec {
            .project-sec {
                .title-part {
                    display: grid;
                    grid-template-columns: 1fr;
                }

                .project-list {
                    flex-direction: column;

                    .project-item {
                        flex: 1;
                        order: 2;
                        text-align: center;

                        .pro-item-title {
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                        }
                    }

                    .project-img {
                        flex: 1;
                        order: 1;
                    }
                }

                .partner-sec {
                    .partner-info {

                        .partner-logos {
                            margin-bottom: 40px;

                            .logo-scrollable {

                                .scrollable-item-wrap {
                                    width: 100%;
                                    justify-content: center;
                                    cursor: all-scroll; /* Change cursor to indicate scrolling */
                                }

                                .scrollable-item-wrap {
                                    -ms-overflow-style: none; /* IE and Edge */
                                    scrollbar-width: none; /* Firefox */
                                }

                                .scrollable-item-wrap::-webkit-scrollbar {
                                    display: none; /* Chrome, Safari, Opera */
                                }

                            }
                        }
                    }
                }
            }
        }

        /*Blog & Article section*/
        #blog-section {

            .title-sec {
                .title {
                    .title-top {
                        display: block;
                    }

                    h3 {
                        border-left: 3px solid var(--title-border-color);
                        padding-left: 20px;
                        text-transform: uppercase;
                    }

                    p {
                        padding-left: 23px;
                    }
                }
            }

            .blogs-handle {

                .blog-prev, .blog-next {
                    display: none;
                }

                .blog-slider-container {

                    .blog-slider {
                        flex-direction: column;

                        .blog-card {
                            width: 100%;
                        }
                    }
                }
            }


        }


        /*Service Section*/
        #service-sec {

            .background-service {

                .left-image {
                    width: 100%;
                }

                .right-image {
                    display: none;
                }
            }


            .service-sec {
                grid-template-columns: 1fr;

                .service-title {
                    order: 1;
                }

                .service-list {
                    order: 2;
                }
            }
        }


    }

    /*Large Screen View*/
    @media (min-width: 768px) {


        /*Main banner section*/
        .home-banner {
            margin-top: 7rem;
        }


        .main-content {
            margin: 5rem 10rem;

            h3 {
                margin: 15px 0 30px 0;
            }

            p {
                margin: 30px 0;
            }

        }

        .social-media {
            display: flex;
        }

        /*Home page under banner welcome section*/
        #under-banner {
            .welcome-sec {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
                padding-top: 100px;
                padding-bottom: 100px;
            }

            .wel-content {
                margin-left: 40px;;
            }

            /*Award Section */

            .bad-row {
                align-items: center;

                .badge {
                    width: 185px;
                    height: 200px;
                }

                .badge-position {
                    position: relative;
                    bottom: 50px;
                }
            }
        }

        /*Home page special section*/
        #special-sec {

            .spe-content {
                margin-left: 40px;;
            }

            .spe-list {
                margin-left: 40px;;
            }
        }

        /*Latest Project section*/
        #project-sec {
            .project-sec {

                .title-part {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                }

                .project-list {
                    justify-items: center;

                    .pro-item-title {
                        display: flex;
                        flex-direction: row;
                        align-items: center;
                        gap: 30px;
                    }
                }

                .partner-sec {
                    .partner-info {
                        margin-top: 60px;

                        .partnering-content {
                            grid-auto-columns: 50%;
                            align-items: center;

                        }

                        .partner-logos {
                            position: absolute;
                            left: 51%;

                        }
                    }
                }
            }
        }

        /*Blog & Article section*/
        #blog-section {

            .title-sec {
                .title {
                    justify-content: center;
                    text-align: center;
                    margin-left: 10rem;
                    margin-right: 10rem;

                    .title-top {
                        display: block;
                        width: 5rem;
                        height: 3px;
                        margin: auto;
                        background-color: var(--title-border-color);
                    }

                }
            }


            .blog-read-more {
                display: flex;
                justify-content: center;

                button {
                    padding-left: 60px;
                    padding-right: 60px;
                }
            }
        }


        /*Service Section*/
        #service-sec {

            .container {
                margin-top: 0;
                margin-bottom: 0;
            }

            .left-line {
                border-left: 2px solid #FFFFFF;
                overflow: visible;
            }

            .service-sec {
                grid-template-columns: 1fr 1fr;
                align-items: center;

                .service-title {
                    margin-left: 70px;
                    padding-left: 65px;
                }

                .service-list {

                    .list {
                        display: flex;
                        align-items: center;
                        position: relative;
                    }

                    p {
                        margin-left: 80px;
                    }

                    h4 {
                        padding-left: 20px;
                        margin-left: 60px;
                    }

                    .dot {
                        left: -9px;
                        width: 15px;
                        height: 15px;
                        border-radius: 100px;
                        background-color: white;
                        position: absolute;

                    }

                }

                .service-list > :nth-child(2) {

                    .horzon-hr {
                        width: 63px;
                        margin-right: 0;
                        margin-left: 0;
                        display: block;
                    }

                    .dot {
                        left: 50px;

                    }

                    p {
                        margin-left: 140px;
                    }

                }
            }
        }


    }

}

/*Service Page Styles*/
#service-page {

    .banner-bottom {
        text-align: center;
        margin-top: 6rem;
        margin-bottom: 6rem;
    }

    /* Select even-numbered child divs */

    #services-list .services:nth-child(even) {
        background-color: var(--primary-color);
        color: var(--white-color);
    }

    /* Select odd-numbered child divs */

    #services-list .services:nth-child(odd) {
        background-color: var(--white-color);
        color: #101825;

        .service-title {
            h3 {
                color: #333333;
            }
        }
    }

    .services {
        .service-content {
            padding-top: 5rem;
            padding-bottom: 5rem;

            .service-title {

                h3 {
                    border-left: 3px solid var(--title-border-color);
                    padding-left: 20px;
                    text-transform: uppercase;
                }

                p {
                    padding-left: 23px;
                    margin-top: 10px;
                    margin-bottom: 10px;
                }
            }

            .stacks {
                ul {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    text-decoration: none;
                    row-gap: 20px;

                    li {
                        list-style-type: none;

                    }
                }
            }
        }
    }


    /*Mobile View */
    @media (max-width: 768px) {

        .services {
            .service-content {
                display: flex;
                flex-direction: column;
                row-gap: 10px;

                .stacks {
                    ul {
                        padding: 23px;
                    }
                }
            }
        }
    }

    /*Large Screen View*/
    @media (min-width: 768px) {
        .services {
            .service-content {
                display: grid;
                grid-template-columns: 60% 40%;
                width: 100%;
                align-items: center;

                .service-title {
                    padding-right: 4rem;
                    padding-left: 4rem;
                }
            }
        }
    }
}


/*Contact Us Page Styles*/

#contact-us-page {

    .info-sec {
        background-color: var(--white-color);

        .info-map {
            display: grid;
            row-gap: 30px;
            column-gap: 10px;
            margin-top: 5rem;
            margin-bottom: 10rem;

            .information {

                .title-content {
                    h3 {
                        border-left: 3px solid var(--title-border-color);
                        padding-left: 20px;
                        text-transform: uppercase;
                        color: #333333;
                    }

                    p {
                        padding-left: 23px;
                        margin-top: 30px;
                        margin-bottom: 30px;
                        color: #102447;
                    }
                }

                .office-details {
                    padding-left: 23px;
                    margin-top: 30px;
                    margin-bottom: 30px;
                    color: #101825;

                    h4 {
                        text-transform: uppercase;
                        color: #333333;
                    }

                    p {
                        color: #102447;
                        margin: 15px 0 15px 0;
                    }

                    .details {
                        margin: 15px 0 15px 0;
                        display: flex;
                        gap: 20px;

                        p {
                            margin-top: 0;
                        }

                        .icon {
                            width: 30px;

                            img {
                                width: 20px;
                                height: 20px;
                                margin: 2px;
                            }
                        }
                    }
                }
            }

            .map {
                position: relative;


                .map-boarder {
                    position: relative;
                    z-index: 2;
                    margin-top: 50px;
                    margin-bottom: 20px;
                    border: 14px solid #A7CCFF;
                    border-radius: 5px;
                    width: 90%;
                    height: 100%;
                }

                .map-frame {
                    margin-top: 50px;
                    margin-bottom: 20px;
                    position: absolute;
                    z-index: 3;
                    top: -20px;
                    left: 30px;
                    width: 95%;
                    height: 100%;
                }
            }
        }
    }


    .message-sec {
        background-color: #052F69;

        .form-sec {
            margin-top: 5rem;
            margin-bottom: 5rem;

            .title-content {
                color: var(--white-color);

                h3 {
                    border-left: 3px solid var(--title-border-color);
                    padding-left: 20px;
                    text-transform: uppercase;
                }

                p {
                    padding-left: 23px;
                    margin-top: 10px;
                    margin-bottom: 30px;
                }

                .warning-message {

                    display: inline-block;
                    color: black;
                    padding: 3px 25px;
                    font-weight: bold;
                    border-radius: 5px;
                    margin-bottom: 35px;
                    background-color: #ffcc008a;
                    border: 3px solid #ffcc008a;
                    margin-left: 23px;
                    vertical-align: middle;
                }

                .warning-icon {
                    width: 25px;
                    height: 25px;
                    margin-right: 10px;
                    vertical-align: middle;
                }
            }

            .form {
                padding-left: 23px;

                input, textarea {
                    padding: 17px;
                    border: 1px solid #ccc;
                    border-radius: 5px;
                }

                textarea {
                    margin-top: 40px;
                    width: 100%;
                }

                button {
                    border-radius: 5px;
                    font-size: 20px;
                    background-color: #052F69;
                }
            }
        }
    }


    /*Mobile View */
    @media (max-width: 768px) {
        .info-sec {
            .info-map {
                grid-template-columns: 1fr;

                .map {
                    min-height: 400px;
                }
            }
        }

        .message-sec {

            .form-sec {

                .form {
                    .input-grid {
                        display: grid;
                        grid-template-columns: 1fr;
                        row-gap: 40px;
                    }
                }
            }
        }

    }

    /*Large Screen View*/
    @media (min-width: 768px) {
        .info-sec {
            .info-map {
                grid-template-columns: 1fr 1fr;

                .map {
                    min-height: 500px;
                }
            }
        }

        .message-sec {

            .form-sec {

                .form {
                    width: 75%;

                    .input-grid {
                        display: grid;
                        grid-template-columns: 50% 50%;
                        row-gap: 40px;
                        column-gap: 40px;
                    }
                }
            }
        }
    }
}

/* About Us page*/
#about-us-page {

    .who-we-sec {
        background-color: var(--white-color);

        .divide-paragraph {
            margin: 5rem 0 5rem 0;
            display: grid;

            .info-sec {
                h3 {
                    color: var(--title-head-color);
                    border-left: 3px solid var(--title-border-color);
                    padding-left: 20px;
                    text-transform: uppercase;
                }

                p {
                    padding-left: 23px;
                    margin: 2rem 0;
                    color: var(--title-content-color);
                }
            }

            .img-sec {
                position: relative;

                .img-boarder {
                    position: relative;
                    z-index: 2;
                    margin-top: 50px;
                    margin-bottom: 20px;
                    border: 14px solid #A7CCFF;
                    border-radius: 5px;
                    width: 90%;
                    height: 100%;
                }

                .img-frame {
                    border-radius: 10px;
                    margin-top: 50px;
                    margin-bottom: 20px;
                    position: absolute;
                    z-index: 3;
                    top: -10px;
                    left: 25px;
                    width: 95%;
                    height: 100%;
                }
            }
        }
    }

    .vision-mission-sec {
        background-color: var(--white-color);


        .bg-banner {
            margin: 3rem 0;
            background-image: url("/img/about_us_page/vision-sec-img.png");
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center center;

            .color-banner {
                background-color: #000120af;

                .divide {
                    display: grid;
                    gap: 30px;
                    padding: 3rem;

                    h3 {
                        border-left: 3px solid var(--title-border-color);
                        padding-left: 20px;
                        text-transform: uppercase;
                        margin-bottom: 3rem;
                    }
                }
            }
        }
    }

    .count-sec {
        background-color: var(--white-color);
        color: var(--title-head-color);

        .divide {
            display: flex;
            justify-content: space-around;
            gap: 30px;
            margin: 3rem 0;

            .count {
                display: flex;
                align-items: center;
                gap: 25px;
                margin-bottom: 20px;
            }

            img {
                width: 50px;
                height: 50px;
            }

            span {
                font-size: xx-large;
            }

            h5 {
                text-transform: uppercase;
            }
        }
    }

    .gallery-sec {
        background-color: var(--white-color);
        padding-top: 60px;
        padding-bottom: 60px;
        display: flex;
        width: 100%;
        height: 500px;

        .column {
            margin: 5px;
            display: flex;
            flex-direction: column;
        }

        .col-50 {
            width: 50%;
        }

        .col-30 {
            width: 30%;
        }

        .col-20 {
            width: 20%;
        }

        .col-50 img, .col-30 img, .col-20 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .col-50 .row {
            height: 100%;
        }

        .col-30 .row {
            height: 49%;
        }

        .col-30 .row:first-child {
            margin-bottom: 5px;
        }

        .col-30 .row:last-child {
            margin-top: 5px;
        }

        .col-20 .row {
            height: calc(100% / 3);
        }

        .col-20 .row:nth-child(2) {
            margin: 10px 0;
        }

    }

    .mobile-gallery {
        display: none;
    }


    .project-process {
        background-color: #596CB3;
        position: relative;

        .background {
            display: flex;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            position: absolute;
            height: 100%;
            width: 55%;
            z-index: 1;

            img {
                width: 100%;
                height: 100%;
            }
        }

        .bg-colour {
            display: flex;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            position: absolute;
            height: 100%;
            width: 55%;
            z-index: 2;
            background-color: #000120e3;
        }

        .content {
            position: relative;
            z-index: 3;

            .content-divide {
                display: grid;
                gap: 30px;

                .left-content {
                    margin: 5rem 0;
                    border: 7px solid #A7CCFF;
                    padding: 2rem;
                    border-radius: 7px;

                    .title-design {
                        width: 7rem;
                        height: 3px;
                        background-image: linear-gradient(to right, #095DCF, #052F69);
                    }

                    h3 {
                        text-transform: uppercase;
                        margin: 20px 0;
                    }

                    .btn-div {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        margin-top: 20px;
                        width: fit-content;


                        button {
                            border: none;
                            font-size: x-large;
                            padding: 0.01rem 0;
                            background-color: rgb(0, 0, 0, 0.0);
                            color: #A7CCFF;
                        }

                        .btn-design {
                            width: 5rem;
                            height: 3px;
                            background-color: #A7CCFF;
                        }
                    }
                }

                .right-content {

                    .list {
                        margin: 5rem 0;
                        position: relative;

                        .item {
                            position: relative;
                            margin: 2rem 0;

                            .title {
                                display: flex;
                                flex-direction: row;
                                align-items: center;

                                .dot {
                                    height: 20px;
                                    width: 20px;
                                    border-radius: 100%;
                                    background-color: var(--white-color);
                                }

                                h4 {
                                    padding-left: 20px;
                                    letter-spacing: 0.1rem;
                                    text-transform: uppercase;
                                }
                            }

                            p {
                                padding-left: 40px;
                            }
                        }

                    }
                }
            }
        }
    }

    .team-sec {
        background-color: var(--white-color);
        padding: 5rem 0;
        color: var(--title-head-color);

        .header-title {
            h3 {
                text-transform: uppercase;
                padding-left: 20px;
                border-left: 3px solid var(--title-border-color);
                margin-bottom: 2rem;
            }
        }

        .flow-divide > div {
            margin: 8px;
        }

        .flow-divide {
            display: grid;
            justify-content: space-between;
            grid-template-columns: 25% 25% 25% 25%;
            row-gap: 40px;

            .profile-frame {
                height: 350px;
                background-image: linear-gradient(to top, #d9d9d9 80%, white 20%);
                display: flex;
                align-items: center;
                justify-content: end;
                width: 100%;

                img {
                    height: 100%;
                    width: 100%;
                }
            }

            p {
                text-transform: uppercase;
            }

            .job-title {
                margin: 5px 0 0 0;
            }

            .name {
                font-weight: 900;
                margin: 0 0 5px 0;
            }
        }
    }

    /* Small Mobile View of Team Members */
    @media (max-width: 550px) {
        .team-sec {

            .flow-divide {
                grid-template-columns: 1fr;

            }
        }

    }

    /* Large Mobile View of Team Members */
    @media only screen and (min-width: 550px) and (max-width: 900px) {
        .team-sec {

            .flow-divide {
                grid-template-columns: 50% 50%;

            }
        }
    }

    /* Medium Screen View of Team Members */
    @media only screen and (min-width: 900px) and (max-width: 1280px) {
        .team-sec {

            .flow-divide {
                grid-template-columns: 33.33% 33.33% 33.33%;

            }
        }
    }

    /* Larger Screen View of Team Members */
    @media only screen and (min-width: 1280px) {
        .team-sec {
            .flow-divide {
                grid-template-columns: 25% 25% 25% 25%;

            }
        }
    }


    /* Mobile View */
    @media (max-width: 768px) {
        .who-we-sec {

            .divide-paragraph {
                grid-template-columns: 1fr;

                .img-sec {
                    height: 350px;
                }
            }
        }

        .vision-mission-sec {

            .bg-banner {

                .color-banner {

                    .divide {
                        grid-template-columns: 1fr;
                    }
                }
            }
        }

        .count-sec {
            .divide {
                flex-direction: column;
                align-items: center;

                .count {
                    justify-content: center;
                }
            }
        }

        .gallery-sec {
            display: none;
        }

        .mobile-gallery {
            background-color: white;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            width: 100%;
            height: 100%;
        }

        .mobile-gallery img {
            width: 100%;
            height: 100%;
        }


        .project-process {

            .background {
                display: none;
            }
            .bg-colour {
                display: none;
            }

            .content {

                .content-divide {
                    grid-template-columns: 1fr;

                    .right-content {
                        .list {
                            margin-top: 0;

                            .item {
                                left: 0;
                            }
                        }
                    }
                }
            }
        }

    }


    /* Large Screen View*/
    @media (min-width: 768px) {
        .who-we-sec {
            background-color: var(--white-color);

            .divide-paragraph {
                grid-template-columns: 60% 40%;

                .img-sec {
                    height: 400px;
                }
            }
        }

        .vision-mission-sec {
            .bg-banner {
                .color-banner {
                    .divide {
                        grid-template-columns: 1fr 1fr;
                    }
                }
            }
        }


        .project-process {

            .content {

                .content-divide {
                    grid-template-columns: 60% 40%;

                    .right-content {
                        border-left: 1px solid var(--white-color);

                        .list {

                            .item {
                                left: -10px;
                            }

                        }
                    }
                }
            }
        }

    }
}


/* Blog Page Styles*/

#blog-page {
    .news-sec {
        background-color: var(--white-color);
        padding-bottom: 40px;

        .input-container {
            margin-top: 40px;
            margin-bottom: 40px;
            position: relative;
        }

        .input-container input {
            width: 100%;
            padding: 15px;
            font-size: 16px;
            border: 1px solid #052F69;
            border-radius: 5px;
        }

        .input-container input::placeholder {
            display: flex;
            align-items: center;
        }

        .input-container .icon {
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-40%);
        }
    }

    .page-body {
        width: 1170px;
        height: 609px;
        flex-shrink: 0;
        border-radius: 6px;

        display: flex;
        justify-content: space-between;
        color: white;
        margin: 0 auto;

        .left-side, .right-side {
            width: 50%;
            padding: 20px;
        }

        .left-side {
            background-color: #1f3659;
        }

        h1 {
            margin-bottom: 8px;
            color: #FFF;
            font-size: 28px;
            font-style: normal;
            font-weight: 700;
            line-height: 38px; /* 135.714% */
            text-transform: uppercase;
            border-left: 2px solid #095DCF;
            letter-spacing: 2px;
            padding-left: 10px;
        }

        .rside {
            color: #FFF;
            font-feature-settings: 'liga' off, 'clig' off;
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            text-align: center;
            line-height: normal;
            text-transform: capitalize;
            letter-spacing: 2px;
            border-radius: 50px solid #052F6980;
            background: rgba(5, 47, 105, 0.50);
            backdrop-filter: blur(3.299999952316284px);
            padding-left: 1px;
            padding-top: 8px;
            padding-bottom: 10px;
            margin-right: 300px;
            border-radius: 8px;

        }


        .images-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-top: 30px;


        }

        .image-item {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 15px;

        }

        .image-item a {
            text-decoration: none;
        }

        .image-item a:hover {
            text-decoration: underline;
        }

        .images-container img {
            width: 40%;
            height: 140px;
            border-radius: 8px;

        }

        h3 {
            color: #A7CCFF;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: 100.9%; /* 10.09px */
            margin-top: -25px;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .image-item:nth-child(2) h3,
        .image-item:nth-child(3) h3 {
            border-top: 2px solid #B8C2CE;;
            padding-top: 10px;

        }


        h2 {
            color: #FFF;
            font-size: 19px;
            font-style: normal;
            font-weight: 500;
            line-height: 136.9%; /* 24.642px */
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .imgpara {
            color: #FFF;
            font-size: 12.5px;
            font-style: normal;
            font-weight: 400;
            line-height: 120.9%; /* 14.868px */
            letter-spacing: 1px;


        }

        .right-side {
            background-image: url('/img/trending/04.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-color: #0c0c0cf2;
            border-radius: 0px 6px 6px 0px;
            opacity: 0.6;

        }


        .bottomtext {
            color: #FFF;
            font-size: 18px;
            font-style: normal;
            font-weight: 700;
            margin-top: 400px;
            line-height: 100.9%; /* 18.162px */
        }

        .bottompara {
            color: #FFF;
            font-size: 36px;
            font-style: normal;
            font-weight: 800;
            line-height: normal;
            text-transform: capitalize;
            margin-top: 5px;

        }
    }


    /*Mobile View */
    @media (max-width: 768px) {
        .news-sec {
            .input-container {
                width: 100%;

                .input-container {
                    margin-left: 0;
                    margin-right: 0;
                }
            }
        }

        .page-body {
            flex-direction: column;
            width: 100%;
            height: auto;

            .left-side, .right-side {
                width: 100%;
                padding: 15px;
            }

            .images-container {
                flex-direction: column;
                gap: 10px;
            }

            .image-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .images-container img {
                width: 80%;
                height: auto;
            }

            .rside {
                margin-right: 0;
                margin-top: 10px;
            }

            h1 {
                font-size: 22px;
                padding-left: 0;
            }

            h2 {
                font-size: 16px;
            }

            h3 {
                font-size: 14px;
                margin-top: 20px;
            }
        }


    }

    /*Large Screen View*/
    @media (min-width: 768px) {
        .news-sec {
            .input-container {
                width: 60%;
                margin-left: 20px;
                margin-right: 20px;
            }
        }

        .page-body {
            flex-direction: row;

            .left-side, .right-side {
                width: 50%;
            }

            .images-container {
                flex-direction: column;
                gap: 7px;
            }

            .image-item {
                flex-direction: row;
                align-items: center;
                gap: 20px;
            }

            .images-container img {
                width: 40%;
                height: 150px;
            }

            h1 {
                font-size: 28px;
            }

            h2 {
                font-size: 18px;
            }

            h3 {
                font-size: 12px;
            }
        }

    }

}


/* Single Blog Page Styles*/
#single-blog-page {
    background-color: var(--white-color);

    #single-blog-banner {
        .banner-content {
            display: flex;
            height: 100%;
            justify-content: space-between;

            .banner-title {
                h2 {
                    color: var(--title-head-color);
                }

                h3 {
                    color: #052F69;
                }

                .auth-info {
                    display: flex;
                    color: #052F69;
                    gap: 10px 40px;
                    margin-bottom: 10px;

                    .info {
                        display: flex;
                        gap: 15px;
                        align-items: center;

                        img {
                            width: 20px;
                            height: 20px;
                        }
                    }
                }

                .banner-btns {
                    button {
                        background-color: var(--white-color);
                        border: 2px solid #052F69;
                        color: #052F69;
                        margin: 5px 0;
                    }
                }
            }
        }
    }

    .blog-content {
        padding-top: 40px;
        padding-bottom: 40px;

        .container {
            display: flex;
            flex-wrap: nowrap;
            background-color: white;
            align-items: flex-start;
        }

        .leftside {
            flex: 1;
            max-width: 70%;
            padding: 20px;
            box-sizing: border-box;
            background-color: white;
        }

        .rightside {
            flex: 1;
            max-width: 30%;
            padding: 20px;
            box-sizing: border-box;
            background-color: white;
        }

        .left-image {
            width: 90%;
            height: auto;
            margin-bottom: 20px;
            border-radius: 8px;
            background-color: #092451;

        }

        .leftpara, .midtext, .bottomtext {
            max-width: 90%;
            color: black;
            font-size: 16px;
            line-height: 24px;
            text-align: left;
        }

        .midtext {
            font-size: 36px;
            font-weight: 700;
            line-height: 50px;
        }

        .categories, .recentPosts, .tags, .searchLabel {
            color: #052F69;
            font-size: 32px;
            font-weight: 700;
            text-transform: capitalize;
            margin-bottom: 10px;

        }

        .subcategory-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .subcategory-list li {
            display: flex;
            align-items: center;
            font-size: 18px;
            font-family: Mulish, sans-serif;
            margin-top: 20px;
            color: #052F69;
        }

        .subcategory-list li img {
            width: 15px;
            height: 15px;
            margin-right: 10px;
        }

        .searchLabel {
            margin-top: 40px;
            margin-bottom: 30px;
        }

        /* Search Box Styling */

        .search-container {
            position: relative;
            width: 100%;
            margin-bottom: 20px;
        }

        .search-box {
            width: 100%;
            padding: 10px;
            font-size: 16px;
            border: 2px solid #052F69;
            border-radius: 5px;
            box-sizing: border-box;
            padding-right: 40px; /* Space for the search icon */
        }

        .search-icon {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            cursor: pointer;
        }

        /* Social Media Icons */

        .social-icons {
            display: flex;
            justify-content: flex-start;
            gap: 35px; /* Space between icons */
            margin-top: 70px;
        }

        .social-icons img {
            width: 30px;
            height: 30px;
            cursor: pointer;
        }
    }


    /*Mobile View */
    @media (max-width: 768px) {

        #single-blog-banner {
            .banner-content {
                margin-top: 9rem;

                .banner-title {
                    .auth-info {
                        flex-direction: column;
                    }
                }


                .social-icons {
                    display: none;
                }
            }
        }

        .blog-content {
            .container {
                flex-direction: column;
                align-items: center;
            }

            .leftside,
            .rightside {
                max-width: 100%;
                padding: 10px;
            }

            .left-image {
                width: 100%;
                height: auto;
                margin-bottom: 20px;
                display: block; /* Ensure the image is visible */
                border-radius: 8px;
                background-color: #092451;
            }

            .midtext {
                font-size: 28px;
                line-height: 33px;
            }

            .subcategory-list li{
                display:none;
            }
            .categories , .recentPosts, .tags{
                display:none;
            }

             .recentPosts, .tags, .searchLabel {
                font-size: 24px;
            }

        
   
            .social-icons {
                justify-content: center;
                gap: 20px;
                margin-top: 40px;
            }
        }


    }

    /*Large Screen View*/
    @media (min-width: 768px) {
        #single-blog-banner {
            .banner-content {
                margin-top: 9rem;


                .social-icons {
                    width: fit-content;
                    display: flex;
                    flex-direction: column;
                    margin: 6rem 0 0 0;
                    gap: 25px;
                }
            }
        }

        .blog-content {

        }

    }
}
