﻿/*---- Brij Bhooshan ----*/
/*---- header start ----*/
.header {
    transition: all 0.5s;
    position: absolute;
    z-index: 999;
    width: 100%;
    height: auto;
    background-color: transparent;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

    .header.sticked {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
    }

    .header .logo img {
        max-height: 60px;
        padding: 5px 0px;
        margin-right: 6px;
    }

    .header.stikcy-menu {
        background: #ffffff;
        -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
        box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
        -webkit-animation: 500ms ease-in-out 0s normal fadeInDown;
        animation: 500ms ease-in-out 0s normal fadeInDown;
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }

        .header.stikcy-menu .logo h1 {
            color: var(--color-primary);
        }

    .header .logo h1 {
        font-size: 30px;
        margin: 0;
        letter-spacing: 0.8px;
    }

        .header .logo h1 span {
            color: var(--color-primary);
        }

.sticked-header-offset {
    margin-top: 0;
}

section {
    background: var(--light-color);
}

.hide-on-mobile {
    display: block;
}

/*---- header end ----*/
/*---- home section start ----*/
.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: middle;
}

.home-section {
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 800px;
    min-height: 100vh;
    background: -webkit-gradient(linear, left top, left bottom, from(#370b6f), color-stop(#00429b), color-stop(#006dba), color-stop(#0095ce), to(#2dbcdc));
    background: linear-gradient(to bottom, #370b6f, #00429b, #006dba, #0095ce, #2dbcdc);
}

    .home-section .banner-image {
        text-align: center;
        padding-top: 50px;
    }

    .home-section .creative-shape {
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: -5px;
        width: 100%;
        height: auto;
    }

.home-3 {
    position: relative;
    z-index: 1;
    height: 750px;
    min-height: 100vh;
    width: 100% !important;
    background: url(../img/home-3-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

    .home-3::before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: .3;
        background-color: #1f3081 !important;
    }

#particles-js {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
}

.home-3 .main-banner-content {
    padding-top: 70px;
}

    .home-3 .main-banner-content h1 {
        color: #ffffff;
        font-size: 68px;
        font-weight: 700;
        margin: 0 0 20px 0;
    }

.home-3 .banner-image {
    padding-top: 70px;
}

.main-banner-content .social-icon-list {
    margin-bottom: 15px;
}

    .main-banner-content .social-icon-list li {
        display: inline-block;
        margin: 5px 5px;
    }

        .main-banner-content .social-icon-list li a {
            color: #fff;
            font-size: 18px;
            width: 40px;
            height: 40px;
            line-height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            border-radius: 10px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            border: 1px solid rgb(255, 255, 255, 0.2);
            background-color: transparent;
            -webkit-transition: all .3s;
            transition: all .3s;
        }

            .main-banner-content .social-icon-list li a:hover {
                color: #fff;
                border: 1px solid #002eff;
                background-color: #002eff;
            }
/*---- home section end ----*/
/*---- page header start ----*/
.page-title-area {
    position: relative;
    z-index: 1;
    height: 400px;
    background-image: url(../allimages/page-title-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

    .page-title-area::before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.5;
        background-color: #030821;
    }

.page-title-content {
    text-align: center;
    margin-top: 45px;
}

    .page-title-content h2 {
        color: #ff5b11;
        font-size: 42px;
        font-weight: 600;
        margin-bottom: 0;
    }

        .page-title-content h2 span {
            color: #ffffff;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 0;
        }

    .page-title-content ul {
        margin-top: 12px;
        margin-bottom: 0;
    }

        .page-title-content ul li {
            display: inline-block;
            position: relative;
            color: #ffffff;
            font-size: 17px;
            font-weight: 600;
            margin-left: 10px;
            margin-right: 10px;
        }

            .page-title-content ul li a {
                display: inline-block;
                color: #ffffff;
                -webkit-transition: 0.4s;
                transition: 0.4s;
            }

                .page-title-content ul li a:hover {
                    color: #7b68ee;
                }

            .page-title-content ul li::before {
                content: '';
                position: absolute;
                top: 10px;
                right: -15px;
                width: 7px;
                height: 7px;
                border-radius: 50%;
                background-color: #ffffff;
            }

            .page-title-content ul li:last-child::before {
                display: none;
            }

.item-webhosting {
    background-image: url(../allimages/web-hosting.jpeg);
}

.item-bg2 {
    background-image: url(../img/page-title-bg-3.jpg);
}

.page-header {
    padding: 120px 0 60px 0;
    min-height: 20vh;
    background: url(../images/page-header-bg.png) center bottom;
    background-size: cover;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
}

    .page-header:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(360deg,var(--light-color), var(--light-color));
        z-index: 0;
        opacity: 0.6;
    }

/*---- page header end ----*/
/*---- about section start ----*/
.about-area {
    position: relative;
    z-index: 1;
    background: #36a2db1a;
}

.about-content {
    margin: 0px 15px 0px 0px;
}

    .about-content h3 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .about-content p {
        margin-bottom:5px;
    }

        .about-content p:nth-last-child(2) {
            margin-bottom: 0px;
        }

.about-featue {
    margin: 0;
    padding: 0;
    list-style: none;
    -moz-columns: 2;
    columns: 2;
}

    .about-featue li {
        color: #00005b;
        text-shadow: 1px 1px 1px lightgrey;
        padding: 5px 0px 5px 18px !important;
        background: url(../images/arrow-b.png) 5px 13px no-repeat rgba(0, 0, 0, 0) !important;
    }

.about-btn-box {
    display: inline-block;
    margin-top: 25px;
}

.about-image {
    position: relative;
    text-align: center;
    margin-left: 0px;
}

    .about-image img {
        border-radius: 5px;
    }

    .about-image .years-design {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 20px;
        max-width: 250px;
        padding: 15px 10px;
        border-radius: 5px;
        background-color: #ffffff;
        border-bottom: 2px solid #ff9800;
        -webkit-box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
        box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
        margin-left: auto;
        margin-right: auto;
    }

        .about-image .years-design h2 {
            font-size: 70px;
            font-weight: 800;
            background: url(../img/about.jpg) no-repeat;
            background-position: 50% 50%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.1;
        }

        .about-image .years-design h5 {
            color: #ff9800;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            margin-top: 10px;
        }
/*---- about section end ----*/
/*---- featured section start ----*/
.left {
    text-align: right;
}

.right {
    text-align: left;
}

.list-wrap {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

    .list-wrap p {
        color: #000;
    }

    .list-wrap:nth-child(3),
    .list-wrap:nth-child(6) {
        margin-bottom: 0;
    }

.description h4 {
        color: #356001;
        text-shadow: 0px 1px 2px rgba(0,0,0,0.3);
    }
.description p{
    text-align:justify;
}
.icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    place-content: center;
}

    .icon svg {
        width: 100%;
        place-content: center !important;
    }

.list-center-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    height: 100%;
}

.center-icon {
    width: 100%;
    text-align: center;
}

    .center-icon img {
        width: 100%;
        border-radius: 20px;
        opacity: 0.9;
    }
/*---- featured section end ----*/
/*---- services section start ----*/
.services-section {
    background: url(../img/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.single-services-item {
    position: relative;
    z-index: 1;
    display: block;
    padding: 20px 20px;
    border-radius: 5px;
    background-color: #c0e3cf;
    -webkit-box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    -moz-box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    -webkit-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
    margin-top: 20px;
    text-align: center;
}

.services-icon {
    display: inline-flex;
    /*    display: inline-block;*/
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: 15px;
    will-change: transform;
    align-items: center;
}

    .services-icon i {
        /*color: #ff561d;*/
        color: #ff5b11;
        font-size: 50px;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

.single-services-item h3 {
    font-size: 20px;
    font-weight: 600;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    margin-bottom: 0;
    text-align: center;
    color: #0066ff;
    text-shadow: 0px 1px 1px rgba(0,0,0,0.3);
}

    .single-services-item h3 a {
        display: inline-block;
    }

.single-services-item p {
    font-size: 16px;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    will-change: transform;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: justify;
}


.single-services-item:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

    .single-services-item:hover .services-icon {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }
/*---- services section end ----*/
/*---- technology section start ----*/
.icon-box {
    padding: 20px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    height: 100%;
    width: 100%;
    text-align: center;
    color: var(#3a3a3a);
    box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
    background: #ffffff;
}

    .icon-box .icon1 img {
        width: 77px;
    }

    .icon-box h4 {
        margin-bottom: 15px;
        font-size: 24px;
    }
        .icon-box h4 a {
            color: #025add;
            transition: 0.3s;
        }
    .icon-box .title {
        margin-bottom: 15px;
        font-size: 24px;
    }

        .icon-box .title a {
            color: #025add;
            transition: 0.3s;
        }

    .icon-box .icon1 {
        margin-bottom: 20px;
        padding-top: 10px;
        display: inline-block;
        transition: all 0.3s ease-in-out;
        font-size: 48px;
        line-height: 1;
        color: #025add;
    }

    .icon-box:hover {
        transform: scale(1.04);
    }
/*---- technology section end ----*/
/*---- work section start ----*/
.work-section {
    padding: 50px 0px;
}

.flip-box {
    background-color: transparent;
    width: 100%;
    height: 150px;
    /*height: 100%; */
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: all 0.8s;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.flip-box-front {
    background: #fff;
    color: #000000;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.3);
    place-content: center;
    box-shadow: 1px 2px 5px rgb(0 0 0 / 50%);
    text-align: center;
    border-radius: 6px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    border-color: #356001 !important;
    border: 2px solid;
    font-size: 16px;
}

.flip-box-back {
    background: #ff7810;
    color: #ffffff;
    transform: rotateY(180deg);
    place-content: center;
    text-align: center;
    box-shadow: 1px 2px 5px rgb(0 0 0 / 50%);
    border-radius: 6px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    border-color: #356001 !important;
    border: 2px solid;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-back {
    transform: rotateY(180deg);
}

.work-list-icon img {
    vertical-align: middle;
    border-style: none;
    height: 50px;
}

.work-list {
    padding-top: 10px;
}
/*---- work section end ----*/
/*---- footer section start ----*/
.footer-section {
    position: relative;
    z-index: 1;
    background-image: url(../img/dotted.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-color: #1C2431;
}

    .footer-section:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.2;
    }

.footer-area {
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}

.foot-img{
    max-height:150px!important
}
.footer-heading {
    margin-bottom: 20px;
}

    .footer-heading h3 {
        position: relative;
        color: #000000;
        font-size: 20px;
        font-weight: 600;
        padding-bottom: 10px;
        border-bottom: 1px solid rgb(255, 255, 255, 0.2);
        margin: 0;
    }

.single-footer-widget .footer-social {
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 0;
}

    .single-footer-widget .footer-social li {
        display: inline-block;
        margin-right: 10px;
    }

        .single-footer-widget .footer-social li:last-child {
            margin-right: 0;
        }

    .single-footer-widget .footer-social i {
        color: #025add;
        font-size: 20px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 8px;
        display: inline-block;
        border: 1px solid #ffffff;
        background-color: #ffffff;
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }

        .single-footer-widget .footer-social i:hover {
            color: #ffffff;
            border: 1px solid #025add;
            background-color: #025add;
        }

.single-footer-widget p {
    color: #ececec;
    font-size: 16px;
    font-weight: 400;
}

.single-footer-widget .footer-heading {
    margin-bottom: 25px;
}

    .single-footer-widget .footer-heading h3 {
        color: #ffffff;
        font-size: 20px;
        font-weight: 700;
        margin: 0;
    }

.single-footer-widget .footer-quick-links {
    padding-left: 0;
    margin-bottom: 0;
}

    .single-footer-widget .footer-quick-links li {
        padding-bottom: 5px;
        list-style-type: none;
    }

        .single-footer-widget .footer-quick-links li:last-child {
            padding-bottom: 0;
        }

        .single-footer-widget .footer-quick-links li a {
            display: inline-block;
            color: #ffffff;
            font-size: 15px;
            font-weight: 400;
            text-shadow: 0px 1px 2px rgba(0,0,0,0.3);
        }
        .single-footer-widget .footer-quick-links li:hover {
            -webkit-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;
        }
            .single-footer-widget .footer-quick-links li a:hover {
                -webkit-transition: 0.4s;
                transition: 0.4s;
                
            }

.single-footer-widget .footer-info-contact {
    position: relative;
    padding-left: 35px;
    margin-bottom: 10px;
}

    .single-footer-widget .footer-info-contact:last-child {
        margin-bottom: 0;
    }

    .single-footer-widget .footer-info-contact i {
        color: #ffffff;
        position: absolute;
        padding-top:3px;
        top: 0;
        left: 0;
    }

        .single-footer-widget .footer-info-contact i::before {
            font-size: 20px;
        }

    .single-footer-widget .footer-info-contact h3 {
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        margin: 0 0 5px 0;
    }

    .single-footer-widget .footer-info-contact span {
        color: #ececec;
        font-size: 14px;
        font-weight: 400;
    }

        .single-footer-widget .footer-info-contact span a {
            color: #ececec;
            font-size: 14px;
            font-weight: 400;
            -webkit-transition: 0.4s;
            transition: 0.4s;
        }

            .single-footer-widget .footer-info-contact span a:hover {
                color: #ececec;
            }
/*---- footer section end ----*/

