
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: #014db2 !important;
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
    border-color: #014db2 !important;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 25px 0;
    color: #000000 !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color:#000000 !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: white;
    color: black;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary) !important;
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 991.98px) {
    .sticky-top .navbar-light {
        background: var(--bs-light) !important;
    }

    /*** Top and Bottom borders go out ***/
    .navbar-light .navbar-nav .nav-link:after,
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        top: 30px;
        bottom: 30px;
        left: 0px;
        width: 100%;
        height: 2px;
        background: var(--bs-primary);
        opacity: 0;
        transition: all 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:before {
        bottom: auto;
    }

    .navbar-light .navbar-nav .nav-link:after {
        top: auto;
    }

    .navbar-light .navbar-nav .nav-link:hover:before,
    .navbar-light .navbar-nav .nav-link.active:before {
        top: 20px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        bottom: 20px;
        opacity: 1;
    }
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}
/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../img/breadcrumb.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}
/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}


.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-secondary);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6));
    background-size: cover;
}


@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }
}
/*** Carousel Hero Header End ***/


/*** Counter Facts Start ***/
.counter-facts {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, 0.8)), url(../NEWIMAGES/servicehero.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
    background: var(--bs-white);
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    background-color: var(--bs-primary);
    
}
.counter-facts .counter .counter-icon {
    position: relative;
    width: 120px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 10px 10px 0 0;
    transform: translateY(-20px);
    font-size: 50px;
    line-height: 90px;
    color: var(--bs-secondary);
    background: rgba(1, 143, 252, 0.5);
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter .counter-icon:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 90px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    background: rgb(255 255 255);
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter:hover .counter-icon i {
    transform: rotate(360deg);
    transition: all 0.3s ease;
}
.counter-facts .counter h3 {
    color: var(--bs-primary);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}
.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: block;
    color: var(--bs-secondary);
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter { margin-bottom: 40px; 
    }
}
/*** Counter Facts End ***/


/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%; 
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}
/*** Service End ***/


/*** Features Start ***/
.features .feature-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.features .feature-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 58, 102, 0.1);
    z-index: -1;
    transition: 0.5s;
}

.features .feature-item:hover::after {
    height: 100%;
}

.features .feature-item .feature-icon {
    width: 120px; 
    height: 120px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon {
    border-radius: 50%;
    background: var(--bs-white) !important;
}

.features .feature-item .feature-icon i {
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon i {
    color: var(--bs-secondary) !important;
    transform: rotate(360deg);
    transition: all 0.5s ease;
}
/*** Features End ***/


/*** Country Start ***/
.country .country-item {
    position: relative;
}

.country .country-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 58, 102, 0.7);
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.country .country-item:hover::after {
    height: 100%;
}

.country .country-item .country-flag {
    position: absolute;
    width: 90px; 
    height: 90px; 
    border-radius: 50%;
    top: -45px; 
    left: 50%; 
    transform: translateX(-50%);
    transition: 0.5s;
    z-index: 2;
}

.country .country-item .country-flag img {
    border: 5px solid var(--bs-white);
    transition: 0.5s;
}

.country .country-item:hover .country-flag img {
    border: 5px solid var(--bs-white);
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

.country .country-item .country-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.country .country-item:hover .country-name {
    opacity: 1;
}

.country .country-item img {
    transition: 0.5s;
}

.country .country-item:hover img {
    transform: scale(1.2);
}

.country .country-item .country-name a.fs-4 {
    transition: 0.5s;
}

.country .country-item .country-name a.fs-4:hover {
    color: var(--bs-secondary) !important;
}
/*** Country End ***/


/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-secondary);
}
/*** testimonial end ***/


/*** training Start ***/
.training .training-item .training-inner {
    position: relative;
}

.training .training-item .training-inner .training-title-name {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    display: flex; 
    flex-direction: column;
    justify-content: end;
    text-align: center;
    transition: 0.5s;
}

.training .training-item {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.training .training-item:hover .training-inner .training-title-name {
    background: rgba(0, 58, 102, 0.5);
}

.training .training-item:hover .training-inner .training-title-name a {
    opacity: 0;
}

.training .training-item .training-inner img {
    transition: 0.5s;
}

.training .training-item:hover .training-inner img {
    transform: scale(1.3);
}

.training .training-item .training-content {
    position: absolute;
    width: 100%;
    bottom: -100%;
    left: 0;
    transition: 0.5s;
}

.training .training-item:hover .training-content {
    bottom: 0;
}  
/*** training End ***/


/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-primary);
}
.footer .footer-item a {
    line-height: 30px;
    color: #000000;
    transition: 0.5s;
}

.footer .footer-item p {
    /* line-height: 30px; */
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-secondary);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-secondary) !important;
}
/*** copyright end ***/







/* New Changes Made By BS */
/* Hero Section Start */
.video-container {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire div */
    z-index: -1;
}

.video-container .content {
    position: relative;
    z-index: 1;
    color: white;
    /* text-align: center; */
    padding: 50px;
    top: 30%;
}
.video-container .content h1{
    color: white;
    /* text-align: left; */
    font-size: 50px;
}
/* Hero Section End */

/* Button Start */
.video-container button {
    border: none;
    outline: none;
    cursor: pointer;
    width: 250px;
    height: 60px;
    background: rgb(255, 255, 255);
    color: #000000;
    margin: 2% 2%;
    margin-top: 30px;
    padding: 0;
    font-weight: 600;
    border-radius: 20px;
  }
  .video-container button:hover {
    background: rgb(1 77 178);
    color: #ffffff;
  }
.btn-con {
    display: flex;
    flex-wrap:wrap;
  }
  .video-container button:hover a{
    color: white;
  }
  
  .rgbdiv{
    display:flex;
    justify-content:center;
    align-items:center;
    /* background:rgb(255, 255, 255); */
    padding: 2%;
  }
  
  #rgb {
  
    position: relative;
    transition: 0.2s linear;
  }
  
  #rgb::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: -0;
    left: -0;
    right: -0;
    bottom: -0;
    transition: 0.5s ease-out;
    filter:blur(1px);
    opacity:0;
    animation: rainbow 10s infinite;
    background:blue;
    border-radius: 20px;    
  }
  
  @keyframes rainbow {
    0%{
      background-color:#f50a0a;
    }
    10%{
      background-color:#f5770a;
    }
    20%{
      background-color:#f5f10a
    }
    30%{
      background-color:#9ff50a;
    }
    
    40%{
      background-color:#1df50a;
    }
    60%{
      background-color:#0af5d2;
    }
    80%{
      background-color:#0a12f5;
    }
    100%{
      background-color:#f50add;
    }
  
  }
  
  
  #rgb:hover::before {
    transition: 0.2s ease-in-out;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    opacity:1;
  }
  
/* Button ENd */

/* Service Start */
.ser-item {
    text-align: center;
    padding: 20px;
    position: relative;
    border-radius: 10px;
}
.ser-item h4{
 color: black;
 font-size: 20px;
}
.sericonsize1{
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}


/*  */
.ser-item svg {
    content: "";
    position: absolute !important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    stroke-width: 4px;
    fill: none;
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    transition: stroke-dashoffset 3s;
    transition-timing-function: linear;
    border-radius: 10px;
  }
  .ser-item rect {
    width: 100%;
    height: 100%;
  }
  .ser-item:hover svg {
    transition: stroke-dashoffset 3s;
    transition-timing-function: linear;
    stroke-dashoffset: 0;
    border-radius: 10px;
  }
  .ser-item:hover h4{
    color: #014db2;
  }
/* Service End */

/* Technology Start */
.clients-img1 {
    background-image: url(../NEWIMAGES/Python.png);
}
.clients-img2 {
    background-image: url(../NEWIMAGES/Rails.png);
}
.clients-img3 {
    background-image: url(../NEWIMAGES/Node.png);
}
.clients-img4 {
    background-image: url(../NEWIMAGES/Angular.png);
}

.clients-img5 {
    background-image: url(../NEWIMAGES/react.png);
}
.clients-img6 {
    background-image: url(../NEWIMAGES/PHP.png);
}
.clients-img7 {
    background-image: url(../NEWIMAGES/andrioid.png);
}
.clients-img8 {
    background-image: url(../NEWIMAGES/ios.png);
}
.clients-img9 {
    background-image: url(../NEWIMAGES/blockchain.png);
}
.clients-img10 {
    background-image: url(../NEWIMAGES/artificial.png);
}
.clients-img11 {
    background-image: url(../NEWIMAGES/dotnet.png);
}
.clients-img12 {
    background-image: url(../NEWIMAGES/react_native.png);
}
.clients-imgsimilar {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
}
.clients-img {
    margin-bottom: 25px;
}
.clients-img {
    box-shadow: 7px 7px 6px -6px #b6b6b6;
    text-align: center;
    padding: 40px 0;
    height: 160px;
    transition: background-color 0.5s ease-out;
}
.tech .box_bg:hover {
    /* background: #e4c603; */
    /* background-image: url(../NEWIMAGES/1.png); */
    /* background-repeat: no-repeat;
    background-position: center;
    background-size: 40%; */
}
.tech .clients-img1:hover{
    background: #e4c603;
    background-image: url(../NEWIMAGES/1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
}
.tech .clients-img2:hover{
    background: #c91f25;
    background-image: url(../NEWIMAGES/2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
}
.tech .clients-img3:hover{
    background: #166629;
    background-image: url(../NEWIMAGES/3.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
}
.tech .clients-img4:hover{
    background: #dc1f26;
    background-image: url(../NEWIMAGES/4.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
}
.tech .clients-img5:hover{
    background: #056b85;
    background-image: url(../NEWIMAGES/5.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
}
.tech .clients-img6:hover{
    background: #073e9e;
    background-image: url(../NEWIMAGES/6.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
}
.tech .clients-img7:hover{
    background: #257202;
    background-image: url(../NEWIMAGES/7.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
}
.tech .clients-img8:hover{
    background: #040708;
    background-image: url(../NEWIMAGES/8.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
}
.tech .clients-img9:hover{
    background: #0056b3;
    background-image: url(../NEWIMAGES/9.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
}
.tech .clients-img10:hover{
    background: #af3386;
    background-image: url(../NEWIMAGES/10.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
}
.tech .clients-img11:hover{
    background: #e56a39;
    background-image: url(../NEWIMAGES/11.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
}
.tech .clients-img12:hover{
    background: #5b19aa;
    background-image: url(../NEWIMAGES/12.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
}
.clients-img {
    margin-bottom: 25px;
}
/* Technology End */

/* Awards & Certification Start */
.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/*  */

.customer-logos {
    position: relative;
    /* padding-bottom: 40px;  */
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 30px;
    font-weight: bold;
    color: #014db2;
    cursor: pointer;
    z-index: 10;
}

.slick-prev {
    left: -40px; /* Adjust position */
}

.slick-next {
    right: -40px; /* Adjust position */
}

.slick-prev:hover,
.slick-next:hover {
    color: #007bff; /* Highlight color */
}

/* Styling dots and line */
.slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    position: relative;
}

.slick-dots li {
    list-style: none;
    display: inline-block;
    margin: 0 5px;
}

.slick-dots li button {
    font-size: 0px;  /* Hides numbers inside buttons */
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: gray;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.slick-dots li.slick-active button {
    background:#014db2;
}

/* Line under dots */
/* .slick-dots::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: black;
    bottom: -5px;
    left: 0;
} */

/* Awards & Certification End */


.footer h4{
    color: black !important;
}
.footer .footer-item p {
    color: #000000;
}
.footer {
    background: #f7fbff;
}
.copyright  span{
    color: black !important;
}
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #f7fbff !important;
}

/* WP Integration Start */
.whatsapp-float img{
    width: 50px;
    position: fixed;
    bottom: 40px;
    left: 20px;
    border-radius: 10px;
    z-index: 1;
}
/* WP Integration End */

.dropdown-item img{
    width: 30px;
    height: 30px;
    margin-right: 10px
}
.bg-breadcrumbabout {
    /* background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../img/breadcrumb.png); */
    background-image: url(../NEWIMAGES/aboutus.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 70px 0 60px 0;
}
.aboutpadding1{
    margin-bottom: 300px;
}
.aboutpadding1 p{
    color: rgb(0, 0, 0);
    font-size: 20px;
}


/* Blog Start */
.card-effects .card-effect {
    border: none;
    background: #dee2e6;
  }
  .card-effects .card-effect .card-body {
    box-shadow: 0px 5px 24.25px 0.75px rgba(0,0,0,0.1);
    background: #fff;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px
  }
  .card-effects .card-effect .card-img {
    position: relative;
    overflow: hidden;
  }
  .card-effects .card-effect:hover .card-img {
    border-top-left-radius: 5px !important;
    border-top-right-radius: 5px !important
  }
  .card-effects .card-effect .card-img img {
    width: 100%;
    transition: .6s;
    height: 300px;
    object-fit: cover;
  }
  .card-effects .card-effect:hover .card-img img {
    transform: scale(1.2);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  .card-effects .img-hover {
      position: relative;
      overflow: hidden
  }
  .card-effects .img-hover img {
    transition: all 2s ease;
    transform: scale(1)
  }
  .card-effects .img-hover:after {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: 1;
    z-index: 3
  }
  .card-effects .img-hover:before {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: 1;
    z-index: 3;
    top: -10%;
    right: 51%;
    bottom: -10%;
    left: 50%;
    background: rgba(255,255,255,0.3)
  }
  .card-effects .img-hover:after {
    top: 50%;
    right: -10%;
    bottom: 50%;
    left: -10%;
    background: rgba(255,255,255,0.6)
  }
  .card-effects .card-effect:hover .img-hover:before {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 900ms linear
  }
  .card-effects .card-effect:hover .img-hover:after {
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all 900ms linear
  }
  .card-effects .card-effect:hover .img-hover img {
      transform: scale(1.2)
  }
  .card-effects .card-btn {
      display: inline-block;
      padding: 14px 25px 14px 55px;
      position: relative;
      background-color: #2fbfa7;
      color: #ffffff;
      text-transform: capitalize;
      border-radius: 5px;
      font-size: 15px;
      text-transform: uppercase;
      font-weight: 800;
      cursor: pointer;
      border: none;
      transition: 0.5s;
      background-image: linear-gradient(to right top, #8f42b9, #9746c3, #a04bce, #a84fd8, #b154e3);
  }
  .card-effects .card-btn:hover {
      background-image: linear-gradient(to right top, #b154e3, #a84fd8, #a04bce, #9746c3, #8f42b9);
    transition: 0.5s;
  }
  .card-effects .card-btn .icon-arrow {
    color: #ffffff;
    top: 16px;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1),opacity 0.4s cubic-bezier(0.86, 0, 0.07,1);
    font-size: 18px;
    backface-visibility: hidden;
    transform: translateZ(0);
    perspective: 1000
  }
  .card-effects .card-btn .icon-arrow.before {
    left: 20%;
    position: absolute;
    transform-origin: left center
  }
  .card-effects .card-btn .icon-arrow.after {
    opacity: 0;
    position: absolute;
    right: 48px;
    transform: translateX(75%) scaleX(0.1);
    transform-origin: right center
  }
  .card-effects .card-btn.secondary {
    background-color: #ff7029
  }
  .card-effects .card-btn.secondary:hover, .card-effects .card-btn.secondary:active, .card-effects .card-btn.secondary:focus {
    background-color: #2fbfa7
  }
  .card-effects .card-btn.white .icon-arrow {
    color: #2fbfa7
  }
  .card-effects .card-btn.white:hover .icon-arrow, .card-effects .card-btn.white:active .icon-arrow, .card-effects .card-btn.white:focus .icon-arrow {
    color: #fff
  }
  .card-effects .card-btn.md .icon-arrow {
    top: 22px;
  }
  .card-effects .card-btn.sm {
    padding: 10px 25px 10px 50px !important;
    font-size: 14px !important
  }
  .card-effects .card-btn .label {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
    backface-visibility: hidden;
    transform: translateZ(0);
    perspective: 1000
  }
  .card-effects .card-btn.white {
    background-color: #ffffff;
    color: #2fbfa7
  }
  .card-effects .card-btn .icon-arrow.white {
    color: #2fbfa7;
    top: 16px
  }
  .card-effects .card-btn:hover, .card-effects .card-btn:active, .card-effects .card-btn:focus {
    background-color: #ff7029;
    color: #ffffff
  }
  .card-effects .card-btn:hover .icon-arrow.before, .card-effects .card-btn:active .icon-arrow.before, .card-effects .card-btn:focus .icon-arrow.before {
    opacity: 0;
    transform: translateX(-75%) scaleX(0.1)
  }
  .card-effects .card-btn:hover .icon-arrow.after, .card-effects .card-btn:active .icon-arrow.after, .card-effects .card-btn:focus .icon-arrow.after {
    opacity: 1;
    transform: translateX(0) scaleX(1)
  }
  .card-effects .card-btn:hover .label, .card-effects .card-btn:active .label, .card-effects .card-btn:focus .label {
    transform: translateX(-32px)
  }
  .card-effects .text-tb-lines {
      display: grid;
      align-items: center;
      text-align: center;
      gap: 10px;
      color: #014db2;
  }
  .card-effects .text-tb-lines::before, .text-tb-lines::after {
    content: '';
    border-top: 6px double;
    color: #014db2;
  }


  .bg-breadcrumbblog {
    background: linear-gradient(rgb(0 58 102 / 56%), rgb(0 58 102 / 37%)), url(../NEWIMAGES/bloghero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}
/* Blog End */

.teampadding1{
    padding-top: 300px;
}
.bg-breadcrumbteam {
    background: linear-gradient(rgb(0 58 102 / 31%), rgb(0 58 102 / 54%)), url(../NEWIMAGES/teamheronew.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}
.bg-breadcrumbteam a.btn.btn-primary{
    background: linear-gradient(60deg, #014db2, #3d3f41) !important;
    border: none !important;
}
.bg-breadcrumbteam a.btn.btn-primary:hover{
    background: linear-gradient(60deg, #3d3f41, #014db2) !important;
    border: none !important;
}
.careerteam .imgsize11{
    width: 100px;
    height: 100px;
}
.bgnew22{
    background: linear-gradient(10deg, #1150a400, #014db2b0);
}

/* FAQ LIke Section Start */
.section-faq {
	font-family: "Roboto", sans-serif;
	padding-top: 80px;
    padding-bottom: 80px;
}

.section-faq .header-section {
    margin-bottom: 70px;
}

.section-faq .header-section .title {
	font-family: "Poppins", sans-serif;
	font-size: 40px;
	position: relative;
	padding-bottom: 35px;
	margin-bottom: 30px;
}

.section-faq .header-section .title:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 3px;
	background-color: #1556a6;
}

.section-faq .header-section .description {
	font-size: 20px;
    opacity: 0.7;
}

.section-faq .questions .single-question {
	margin-bottom: 20px;
}

.section-faq .questions .single-question > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
	padding: 11px 20px;
	cursor: pointer;
	transition: all .3s;
}

.section-faq .questions .single-question:hover > div,
.section-faq .questions .active > div {
	border-color: #1556a6;
	color: #000000;
    background-color: aliceblue;
}


.section-faq .questions .active > div.qq {
	border-color: #1556a6;
	color: #000000;
    background-color: rgb(200 229 255);
}

.section-faq .questions .single-question h3 {
	font-family: "Poppins", sans-serif;
	font-size: 21px;
}

.section-faq .questions .single-question i {
    font-size: 20px;
		transition: transform .4s;
}

.section-faq .questions .active i {
	transform: rotateX(180deg);
}

.section-faq .questions .single-question .answer {
    padding-top: 25px;
    padding-bottom: 5px;
    opacity: 0.7;
    display: none;
}

.section-faq .question-form {
	background-color: #f8f8f8;
    border-radius: 8px;
    padding: 50px 60px;
    width: 646px;
    box-shadow: 2px 2px 8px 5px rgba(0, 0, 0, 0.2);
}

.section-faq .question-form .title {
	font-family: "Poppins", sans-serif;
    font-size: 24px;
    margin-bottom: 25px;
}

.section-faq .question-form form {

}

.section-faq .question-form form input,
.section-faq .question-form form textarea {
    display: block;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 10px 15px;
    transition: all .3s;
    outline: none;
}

.section-faq .question-form form input {
	margin-bottom: 10px;
}

.section-faq .question-form form textarea {
	height: 100px;
	min-height: 50px;
}

.section-faq .question-form form input:focus,
.section-faq .question-form form textarea:focus {
	background-color: #fff;
	border-color: #bbb;
	box-shadow: 0 0 5px 0 rgba(0,0,0,.2);
}

.section-faq .question-form form .send-request {
    font-family: "Poppins", sans-serif;
    margin-top: 40px;
    text-transform: uppercase;
    background-color: #1556a6;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    transition: box-shadow .3s;
}

.section-faq .question-form form .send-request:hover {
	box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
}

@media(max-width: 991.9px) {
	.section-faq .questions {
	    margin-bottom: 60px;
	}
}
.containercareer{
    max-width: 1000px;
}
/* FAQ Like Section End */

.careerser .ser-item{
    background-color: aliceblue;
}


.bg-breadcrumbcontact {
    background: linear-gradient(rgb(0 58 102 / 55%), rgb(0 58 102 / 72%)), url(../NEWIMAGES/contacthero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}
.bg-breadcrumbportfolio {
    background: linear-gradient(rgb(0 58 102 / 55%), rgb(0 58 102 / 72%)), url(../NEWIMAGES/portfoliohero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}
.bg-breadcrumbservice {
    background: linear-gradient(rgb(0 58 102 / 55%), rgb(0 58 102 / 72%)), url(../NEWIMAGES/servicehero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}
.bg-breadcrumbapply {
    background: linear-gradient(rgb(0 58 102 / 55%), rgb(0 58 102 / 72%)), url(../NEWIMAGES/applyhero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}

.bg1{
    background-image: url(../NEWIMAGES/bg3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}


/* Responsive Start */
@media(max-width:768px){
    .video-container {
        position: relative;
        width: 100%;
        height: auto;
        overflow: hidden;
    }
    .video-container .content {
        position: relative;
        z-index: 1;
        color: white;
        /* text-align: center; */
        padding: 50px;
        top: 0;
    }
    .video-container .content h1 {
        color: white;
        /* text-align: left; */
        font-size: 38px;
    }
    .section-faq .question-form {
        width: 100%;
    }
}
/* Responsive End */