﻿@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Regular-webfont.woff");
}

:root {
    --blue-color: #0579f5;
    --grey-color: #f0f0f0;
    --black-color: black;
    --white-color: white;
    --light-grey: #f5f5f5;
    --gradient: linear-gradient(to right, #058af5, #0063ce);
    --gradient-left: linear-gradient(to left, #058af5, #0063ce);
    --dark-blue: #061526;
}

* {
    font-family: Roboto;
}

p {
    font-size: 1rem;
}

.fw-500 {
    font-weight: 500;
}

.btn-blue {
    border-radius: 2rem;
    border: 1px solid;
    border-color: var(--blue-color);
    color: var(--blue-color);
    font-size: 0.9rem;
    background: transparent;
    padding: 0.4rem 1rem;
}

    .btn-blue:hover {
        background: var(--blue-color);
        color: var(--white-color);
    }

.btn-white {
    border-radius: 2rem;
    border: 1px solid;
    border-color: var(--white-color);
    color: var(--white-color);
    font-size: 0.9rem;
    background: transparent;
    padding: 0.4rem 1rem;
}

    .btn-white:hover {
        background: var(--white-color);
        color: var(--blue-color);
    }

.small-logo {
    width: 1.7rem;
    margin-bottom: 0.7rem;
}

/**************Header Start*************/
.navbar {
    padding: 0;
}

.nav-link {
    font-size: 1.1rem;
    padding: 1.5rem 1.5rem !important;
    color: var(--black-color);
}

.navbar-text a {
    color: var(--blue-color);
}
    .navbar-text a:focus,
    .navbar-text a:hover {
        color: var(--white-color);
    }
.dropdown-menu {
    border-radius: 0;
    padding: 1rem;
    margin: 0 !important;
    border:1px solid #d4e8fd;
}
    .dropdown-menu.show {
        z-index: 1003;
    }

.b-bottom-grey {
    border-bottom: 1px solid #ececec;
}

.dropdown-item {
    padding: 0.5rem 1rem;
}
    .dropdown-item:hover {
        background-color: var(--blue-color);
        color: var(--white-color);
    }

.navbar-nav .nav-item a:hover {
    color: #0063ce;
}

.navbar-nav .nav-item li a:hover {
    color: white;
}

/**************Header End*************/
/***************Home Start**************/
.home-slider {
    background: var(--gradient);
    height: 100%;
    position: relative;
    z-index: 0;
}

.slider-left-container {
    padding-top: 4rem;
    text-align: center;
    width: 70%;
    margin: 0 auto;
}

.slider-right-container {
    width: 33%;
    margin: 0 auto;
}

    /*.slider-right-container img {
        box-shadow: 0 50px 30px -40px rgba(0,0,0,.1);
    }*/

    .flex { /*Flexbox for containers*/
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

.waves {
    position: absolute;
    width: 100%;
    height: 8vh;
    margin-bottom: -7px; /*Fix for safari gap*/
    min-height: 60px;
    max-height: 110px;
    z-index: -1;
    bottom: 0;
}

.content {
    position: relative;
    height: 20vh;
    text-align: center;
    background-color: white;
}

.service-slider .service-card {
    transition: all 0.3s ease; 
}

    .service-slider .service-card:hover {
        transform: translateY(-8px);
        -webkit-box-shadow: 0 50px 30px -40px rgba(0, 0, 0, 0.1);
        background-color: #f5f5f7;   
        box-shadow: 0 50px 30px -40px rgba(0, 0, 0, 0.1);
    }


/* Animation */
.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

    .parallax > use:nth-child(1) {
        animation-delay: -2s;
        animation-duration: 7s;
    }

    .parallax > use:nth-child(2) {
        animation-delay: -3s;
        animation-duration: 10s;
    }

    .parallax > use:nth-child(3) {
        animation-delay: -4s;
        animation-duration: 13s;
    }

    .parallax > use:nth-child(4) {
        animation-delay: -5s;
        animation-duration: 20s;
    }

@keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }

    100% {
        transform: translate3d(85px,0,0);
    }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }

    .content {
        height: 30vh;
    }

    h1 {
        font-size: 24px;
    }
}

.card {
    border-radius: 0.15rem;
    padding: 1rem 0.25rem;
    align-items: center;
    text-align: center;
    transition: 0.5s;
}

    .card:hover {
        transform: translateY(-8px);
        -webkit-box-shadow: 0 50px 30px -40px rgba(0,0,0,.1);
        box-shadow: 0 50px 30px -40px rgba(0,0,0,.1);
    }

    .card p {
        font-size: 1rem;
        margin-bottom: 0;
    }

.card-icon {
    width: 18%;
    margin-bottom: 1rem;
}

.wrapper {
    height: 100%;
}

.fixed-bg {
    /*background-attachment: fixed;*/
    /*background-size: contain;*/
    /*background-position: bottom;*/
    height: 100%;
    width: 100%;
    color: white;
    text-align: left;
    /*display: table;*/
}

.home-services-bg {
   /* background: var(--gradient);*/
   background-image: url('../images/services-bg-image.png');
   width: 100%;
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
}

.progress {
    --bs-progress-border-radius: 1rem;
    --bs-progress-height: 0.8rem;
}

.prev-arrow, .next-arrow {
    display: -webkit-inline-box;
    position: absolute;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 15px;
    padding-left: 6px;
    height: auto;
    width: 30px;
    text-align: center;
    background-color: transparent;
    z-index: 1000;
}


.technologies-slider .prev-arrow, .technologies-slider .next-arrow {
    color: var(--black-color);
    top: 17%;
}

.clients-slider .prev-arrow, .clients-slider .next-arrow {
    color: black;
    top: 10%;
}

.prev-arrow i, .next-arrow i {
    padding-left: 5px;
    font-size: 1.5rem;
}

.prev-arrow {
    left: 1rem;
}

.next-arrow {
    right: 1rem;
}

.circles-container{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.tb-circle-shape1 {
    background-color: var(--blue-color);
}

.tb-circle-shape2 {
    background: #2e80f6;
}

.tb-circle-shape3 {
    background: #2be2e5;
}

.tb-circle-shape1, .tb-circle-shape2, .tb-circle-shape3 {
    position: absolute;
    overflow: hidden;
    border-radius: 50%;
}

.tb-circle-shape1 {
    background-color: #2e93f2;
    width: 30vh;
    height: 30vh;
    left: 0;
    top: 10%;
    -webkit-animation: shapAnimation3 10s ease-in-out infinite;
    animation: shapAnimation3 10s ease-in-out infinite;
}

.tb-circle-shape2 {
    background-color: #30a7ed;
    width: 15vh;
    height: 15vh;
    left: 13.5%;
    top: 50%;
    -webkit-animation: shapAnimation3 5s ease-in-out infinite;
    animation: shapAnimation3 5s ease-in-out infinite;
}

.tb-circle-shape3 {
    background-color: #2e93f2;
    width: 45vh;
    height: 45vh;
    top: 10%;
    right: 0;
    left: 0;
    margin: 0 0 0 auto;
    -webkit-animation: shapAnimation3 10s ease-in-out infinite;
    animation: shapAnimation3 10s ease-in-out infinite;
}

@keyframes shapAnimation3 {
    0% {
        -webkit-transform: translate(0,0);
        transform: translate(0,0);
    }
    20% {
        -webkit-transform: translate(-10px,-5px);
        transform: translate(-10px,-5px);
    }
    40% {
        -webkit-transform: translate(0,-10px);
        transform: translate(0,-10px);
    }
    60% {
        -webkit-transform: translate(10px,0);
        transform: translate(10px,0);
    }
    80% {
        -webkit-transform: translate(10px,10px);
        transform: translate(10px,10px);
    }
    100% {
        -webkit-transform: translate(0,0);
        transform: translate(0,0);
    }
}

/***************Home End**************/
/***************Visualization Start**************/
.page-slider {
    width: 100%;
    height: 88vh;
    background-color: var(--blue-color);
    position: relative;
    z-index: 0;
}

    .page-slider svg {
        position: absolute;
        right: 0;
        z-index: -1;
    }

.page-slider-left-container {
    margin-top: 10rem;
}

.page-slider-right-container {
    margin-top: 6rem;
}

.data-visual-card {
    border-radius: 0.15rem;
    padding: 1rem 0.25rem;
    align-items: center;
    background-color: var(--white-color);
    box-shadow: 1px 1px 7px 0px #003874;
    justify-content: center;
    text-align: center;
    transition: 0.5s;
}

    .data-visual-card:hover {
        transform: translateY(-8px);
        -webkit-box-shadow: 0 50px 30px -40px rgba(0,0,0,.1);
        box-shadow: 0 50px 30px -40px rgba(0,0,0,.1);
    }

.wrapper {
    height: 100%;
}

.fixed-bg {
    /*background-attachment: fixed;*/
    /*background-size: contain;*/
    /*background-position: bottom;*/
    height: 100%;
    width: 100%;
    color: white;
    text-align: left;
    display: table;
}

.page-cards-bg {
    background: var(--gradient)
}

.sub-heading {
    font-size: 1.1rem;
    font-weight: bold;
}
.projects-slider .prev-arrow { 
    top: 30%;
    left: 0;
    color: var(--black-color);
}

.projects-slider .next-arrow {
    top: 30%;
    right: 0;
}

.projects-slider-web-app .prev-arrow {
    top: 45%;
    left: 0;
    color: var(--black-color);
}

.projects-slider-web-app .next-arrow {
    top: 45%;
    right: 0;
}
/***************Visualization End**************/

/**************Web Development Sart************/
.web-deve-card {
    border-radius: 0.15rem;
    padding: 1rem 0.25rem;
    align-items: center;
    background-color: var(--white-color);
    box-shadow: 1px 1px 7px 0px #003874;
    justify-content: center;
    text-align: center;
    height: 46vh;
    transition: 0.5s;
}

.web-deve-card:hover {
    transform: translateY(-8px);
    -webkit-box-shadow: 0 50px 30px -40px rgba(0,0,0,.1);
    box-shadow: 0 50px 30px -40px rgba(0,0,0,.1);
}

    .web-deve-card img {
        width: 3rem;
    }

    .web-deve-card p {
        color: var(--black-color);
    }
/**************Web Development End************/

/**************About Us Start*****************/

.what-wedo-card {
    border-radius: 0.15rem;
    padding: 0.5rem 0.25rem;
    align-items: center;
    background-color: var(--white-color);
    box-shadow: 1px 1px 7px 0px #efefef;
    justify-content: center;
    text-align: center;
    height: 28vh;
    transition: 0.5s;
}

    .what-wedo-card:hover {
        transform: translateY(-8px);
        -webkit-box-shadow: 0 50px 30px -40px rgba(0,0,0,.1);
        box-shadow: 0 50px 30px -40px rgba(0,0,0,.1);
    }

    .what-wedo-card p {
        color: var(--black-color);
    }
.bg-lght-blue {
    background: #eef4fa;
}
/**************About Us End*******************/

/**************Footer Start***********/
footer {
    position: absolute;
    z-index: -1;
    width: 100%;
}

.slick-slider .slick-track {
    display: flex;
    justify-content: start;
    /*align-items: center;*/
}

.techs-container {
}

.footer {
    background: var(--blue-color);
    z-index: -2;
}

    .footer .circles-container{
        z-index: -1;
        height: -webkit-fill-available;
    }

        .footer .circles-container .tb-circle-shape1 {
            height: 14vh;
            width: 14vh;
            background-color: #1285ff;
        }

        .footer .circles-container .tb-circle-shape2 {
            height: 15vh;
            width: 15vh;
            background-color: #1285ff;
        }

        .footer .circles-container .tb-circle-shape3 {
            height: 20vh;
            width: 20vh;
            background-color: #1285ff;
        }

/* Reset FA icon styles */
.footerSocialLinks .social-link i {
    color: inherit !important;
    background: none !important;
    transition: none !important;
}

/* Override brand icon hover effects */
.footerSocialLinks .social-link:hover i {
    color: inherit !important;
    background-color: transparent !important;
}

/* Reset any FA-specific color classes like .fa-facebook or .fa-linkedin */
.fab.fa-facebook-f,
.fab.fa-linkedin-in,
.fab.fa-whatsapp {
    color: inherit !important;
}

.social-link {
    font-size: 0.75rem;
    height: 40px;
    width: 40px;
    border-radius: 2rem;
    border: 1px solid var(--white-color);
    color: var(--white-color);
    align-items: center;
    justify-content: center;
    display: flex;
    text-decoration: none;
}

    .social-link:hover {
        color: var(--white-color);
    }

.footer-quick-links {
    list-style: none;
    padding: 0;
}

    .footer-quick-links a {
        color: var(--white-color);
        text-decoration: none;
    }

.footer-least-bottom {
    border-top: 1px solid var(--white-color);
}

/**************Footer End****************/

/*@media (min-width: 992px){
    .web-deve-card{
        height: 37vh;
    }
}*/

@media (max-width: 992px) {
    .page-slider {
        height: 100%;
    }

    .slider-right-container {
        width: 40%;
        top: 48vh;
    }

    .page-slider-right-container {
        margin-top: 4rem;
    }

    .page-slider-left-container {
        margin-top: 4rem;
    }
    .web-deve-card {
        height: 66vh;
    }

    .navbar {
        padding: 0.7rem 0;
    }

    .nav-link{
        padding: 0.5rem 1.5rem 0.5rem 0 !important;
    }

    .dropdown-menu {
        padding: 1rem;
        border: 0 !important;
    }

    .home-latest-work-container img {
        height: 300px;
    }
}


@media (max-width: 850px) {

    .page-slider-right-container {
        margin-top: 4rem;
    }

    .page-slider-left-container {
        margin-top: 4rem;
    }
}


@media (max-width: 768px) {

    .slider-right-container {
        width: 55%;
        top: 48vh;
    }

    .page-slider {
        height: 100%;
    }

    .page-slider svg {
        display: none;
    }

    .page-slider-left-container {
        margin-top: 4rem;
    }

    .page-slider-right-container {
        margin-top: 0;
    }

    .page-slider {
        background-size: cover;
        background-position: unset;
    }
    .home-slider {
        height: 100%;
    }

    .fix-bg-row {
        display: -webkit-box;
    }

    .text-sm-center {
        text-align: center;
    }

    .mb-sm-5 {
        margin-bottom: 3rem !important;
    }
    .web-deve-card{
        height: 40vh;
    }

    /*abdul saboor data-vis-slider*/
    .projects-slider .prev-arrow {
        top: 10%;
        left: -3px;
    }

    .projects-slider .next-arrow {
        top: 10%;
        right: 8px;
    }

    .projects-slider-web-app .prev-arrow {
        top: 40%;
        left: -3px;
    }

    .projects-slider-web-app .next-arrow {
        top: 40%;
        right: 8px;
    }

    .prev-arrow, .next-arrow {
        width: 50px;
    }

    .school-system-container{
        flex-direction: column-reverse;
    }

}

@media (max-width: 400px) {
    .web-deve-card {
        height: 42vh;
    }

    .what-wedo-card {
        height: 35vh;
    }
}

@media (max-width: 300px) {
    .web-deve-card {
        height: 57vh;
    }

    .what-wedo-card {
        height: 42vh;
    }
}

@media (max-width: 200px) {
    .web-deve-card {
        height: 72vh;
    }

    .what-wedo-card {
        height: 52vh;
    }
}

/**************Custom Development start ********/
.unique-solution {
    background-image: url(../images/Custom-development/background-img.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
    background-color: aqua;
    background-attachment: fixed;
    background-color: #2569e6;
}
.custom-benefits-card {
    border-radius: 0.15rem;
    box-shadow: 1px 1px 7px 0px #e7edf3;
}

.carousel-control-prev-icon {
    background-image: url(../images/back-arrow.png) !important;
}
.carousel-control-next-icon {
    background-image: url(../images/right-arrow.png) !important;
}

/**************Custom Development end ********/

@media (max-width: 575px) {
    [class^="col-xsm-"] {
        float: left;
        width: 100%;
    }

    .col-xsm-1 {
        width: 8.3333%;
    }

    .col-xsm-2 {
        width: 16.6667%;
    }

    .col-xsm-3 {
        width: 25%;
    }

    .col-xsm-4 {
        width: 33.3333%;
    }

    .col-xsm-5 {
        width: 41.6667%;
    }

    .col-xsm-6 {
        width: 50%;
    }

    .col-xsm-7 {
        width: 58.3333%;
    }

    .col-xsm-8 {
        width: 66.6667%;
    }

    .col-xsm-9 {
        width: 75%;
    }

    .col-xsm-10 {
        width: 83.3333%;
    }

    .col-xsm-11 {
        width: 91.6667%;
    }

    .col-xsm-12 {
        width: 100%;
    }

    .mx-xsm-1 {
        margin-left: 0.25rem;
        margin-right: 0.25rem;
    }

    .mx-xsm-2 {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .mx-xsm-3 {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .mx-xsm-4 {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }

    .mx-xsm-5 {
        margin-left: 3rem;
        margin-right: 3rem;
    }

    .mb-xsm-1 {
        margin-bottom: 0.25rem;
    }

    .mb-xsm-2 {
        margin-bottom: 0.5rem;
    }

    .mb-xsm-3 {
        margin-bottom: 1rem;
    }

    .mb-xsm-4 {
        margin-bottom: 1.5rem;
    }

    .mb-xsm-5 {
        margin-bottom: 3rem;
    }


    .px-xsm-1 {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .px-xsm-2 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .px-xsm-3 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .px-xsm-4 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .px-xsm-5 {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}


@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes blinker {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.hoverImgBorder img {
    border: 2px solid transparent;
    transition: border 0.2s ease, transform 0.2s ease;
    border-radius: 10px;
}

    .hoverImgBorder img:hover {
        border: 2px solid var(--blue-color);
        transform: scale(1.05);
    }

.integrationLogos div {
    transition: all 0.3s ease;
}

    .integrationLogos div:hover {
        transition: all 0.3s ease;
        transform: translateY(-8px);
        background-color: #f5f5f7;
    }

.nav-link.active {
    color: #0579f5 !important;
    font-weight: bold;
}

a.active {
    color: #0579f5 !important;
    font-weight: bold;
    background-color: transparent !important;
}

.contactActive {
    background: var(--blue-color) !important;
    color: var(--white-color) !important;
}

.hoverImgBorderDataVisualization img {
    border: 2px solid transparent;
    transition: border 0.2s ease;
    border-radius: 10px;
}

    .hoverImgBorderDataVisualization img:hover {
        border: 2px solid var(--blue-color);
    }

.footerSocialLinks a {
    transition: transform 0.2s ease;
}

    .footerSocialLinks a:hover {
        transform: scale(1.15);
        background-color: white;
        color: var(--blue-color);
    }

.home-latest-work-container img {
    border: 2px solid transparent;
    transition: border 0.2s ease;
}

    .home-latest-work-container img:hover {
        border: 2px solid var(--blue-color);
    }

.ourExpertise-icon-size {
    width: 87px !important;
    height: 85px !important;
    max-width: unset !important;
}



