/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/



/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: black;
    font-size: 18px;
    outline: none;
    margin-right: 15px; /* Adjust this value to increase or decrease the gap */
}
.navbar .navbar-nav .nav-link:last-child {
    margin-right: 0;
}


.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
    
}

.navbar-brand img {
    height: 60px;
    width: auto;
    padding: 10px 0px;
    margin-left: 20px;
    
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
        color: #000;
    
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
    
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;

}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    transition: .5s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    transition: .5s;
}


.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators{
            position: absolute;
            bottom: 20px; /* Adjust as needed */
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            justify-content: center;
            margin: 0;
            padding: 0;
            list-style: none;
}



#carouselId .carousel-indicators li {
            width: 10px;
            height: 10px;
            margin: 3px;
            border-radius: 50%;
            background-color: #ffffff; /* Color of the dots */
            cursor: pointer;
            opacity: 0.7;
}
#carouselId .carousel-indicators .active{
    background-color: #007bff; /* Active dot color */
    opacity: 1;

}


.contactus-button{
    position: relative;
    top: 55px;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
    .carousel-control-prev {
        width: 90px;
        height: 60px;
        position: absolute;
        top: 40%;
        left: -25px;
        border-radius: 0 50px 50px 0;
        opacity: 1;
    }
    
    .carousel-control-prev:hover {
        transition: .5s;
    }
    
    .carousel-control-next {
        width: 90px;
        height: 60px;
        position: absolute;
        top: 40%;
        right: -25px;
        border-radius: 50px 0 0 50px;
        opacity: 1;

    }
    
    .carousel-control-next:hover {
        transition: .5s;
    }

    #carouselId .carousel-indicators{
        position: absolute;
        bottom: 10px; /* Adjust as needed */
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0;
        list-style: none;
}



#carouselId .carousel-indicators li {
        width: 5px;
        height: 5px;
        margin: 3px;
        border-radius: 50%;
        background-color: #ffffff; /* Color of the dots */
        cursor: pointer;
        opacity: 0.7;
}
.contactus-button{
    position: relative;
    top: 25px;
}
    
 

}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(https://img.freepik.com/premium-vector/blue-technology-background_24141-20.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/


/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}




.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}


.services-content-icon img{
    width: 30%;

}




/*** Services End ***/


.row p{
    color: #000;
    letter-spacing: 1px;
}


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--bs-primary) !important;
    background: rgba(0, 0, 0, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
    
}

.team-img img {
    border: 10px solid var(--bs-primary);
    transition: .5s;
    
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-primary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {

    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}


/*.container2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
}

.circle-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -ms-transition: transform 0.3s;
    -o-transition: transform 0.3s;
}

.circle-box {
    border: 1px solid black;
    height: 250px;
    width: 250px;
    padding: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 10px;

}


.circle-box img {
    width: 40%;
}

.circle-box h5 {
    width: 100%;
    margin: 10px 0 0;
    padding: 10px;
    font-size: 1.2em;
    text-align: center;
}

.circle-box:hover {
    transform: scale(1.05);
    background-color: rgb(255, 106, 0);
}
.circle-box:hover h5 {
    color: #ffffff;
}


@media (max-width: 600px) {
   
    .circle-box h3 {
        font-size: 1em;
        padding: 5px;
    }
    .circle-box{
            border: 1px solid black;
            height: 50%;
            width: 250px;
            padding: 10px;
            text-align: center;
            justify-content: center;
            align-items: center;
            margin: 10px;
            margin-left: 40px;
        
    }


}

*/

.circle-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 10px;
   
}

.box1 {
    border-radius: 50%;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #f8f9fa; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    border: 1px solid black;
}

.box1:hover {
    transform: scale(1.05);
    background-color: rgb(255, 106, 0);
}
.box1:hover h5 {
    color: #ffffff;
}


.box-image img {
    max-width: 80px;
    max-height: 80px;
    margin-bottom: 10px;
}

.box-image h5 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

/* Media query for small screens */
@media (max-width: 600px) {
    .circle-box {
        
        height: auto;
        width: 100%;
        text-align: center;
        justify-content: center;
        align-items: center;
        margin: 10px;
        margin-left: auto;
        margin-right: auto;
    }

    .box1 {
        width: 200px;
        height: 200px;
    }

    .box-image img {
        max-width: 50px;
        max-height: 50px;
    }

    .box-image h5 {
        font-size: 0.8rem;
        padding: 5px;
    }

    .row {
        margin: 0; /* Remove margin */
        padding: 0; /* Remove padding */
    }

    .col-md-3, .col-12 {
        padding: 5px; /* Reduce padding */
        margin: 0; /* Remove margin */
        height: 240px;
    }
}
























/*** Team End ***/


/*** Testimonial Start ***/



.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;

}

/*** Testimonial End ***/





.container1{
    padding-top: 10px;
}
.slick-slide{
    margin: 0 20px;
}
.slick-slide img{
    width: 30%;
}
.slick-slider{
    position: relative;
    display: block;
    box-sizing: border-box;
}
.slick-list{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-track{
    position: relative;
    top: 0;
    left: 0;
    display: block;
    opacity: 1;
    width: 300px;
}
.slick-slide{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
.slick-slide img{
    display: block;
}
.slick-initialized .slick-slide{
    display: block;
}
.copy{
    padding-top: 250px;
}
.slider{
    margin-left: 150px;
}

@media (max-width: 520px) {
    .customer-logos img {
        width: 80%; /* Make images larger on small screens */
        margin: 0 auto; /* Center the image */
    
    }
    .slider{
        margin-left: 20px;
    }
}






/*** Contact Start ***/



.contact .info {
    padding: 20px 40px;
    background: #f1f3f6;
    color: #47536e;
    text-align: center;
    border: 1px solid #fff;
  }
  
  .contact .info i {
    font-size: 48px;
    color: #9fb2d8;
    margin-bottom: 15px;
  }
  


  .section-title6 h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 0;
    color: #5777ba;
    font-family: "Poppins", sans-serif;
    text-align: center;
  
  }
  
  .section-title6 p{
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
    font-size: 20px;
    position: relative;
    bottom: 30px;
  }




  .contact .info h4 {
    padding: 0;
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    text-align: center;
  }
  
  .contact .info p {
    font-size: 15px;
  }
  
  .contact .php-email-form {
    width: 100%;
  }
  
  .contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .error-message br+br {
    margin-top: 25px;
  }
  
  .contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  
  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
  }
  
  .contact .php-email-form label {
    font-family: "Poppins", sans-serif;
    margin-bottom: 5px;
    color: #8a8c95;
  }
  
  .contact .php-email-form input,
  .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
  }
  
  .contact .php-email-form input:focus,
  .contact .php-email-form textarea:focus {
    border-color: #5777ba;
  }
  
  .contact .php-email-form input {
    padding: 10px 15px;
    border-radius: 5px;
  }
  
  .contact .php-email-form textarea {
    padding: 12px 15px;
    border-radius: 5px;
  }
  
  .contact .php-email-form button[type=submit] {
    background: #5777ba;
    border: 2px solid #ffffff;
    padding: 10px 24px;
    color: #ffffff;
    transition: 0.4s;
    border-radius: 50px;
    margin-top: 5px;
  }
  
  .contact .php-email-form button[type=submit]:hover {
    background: #ffffff;
    color: #5777ba;
    border: 2px solid black;
  }
  
  @media (max-width: 1024px) {
    .contact .php-email-form {
      padding: 30px 15px 15px 15px;
    }
  }
  
  @media (max-width: 768px) {
    .contact .php-email-form {
      padding: 15px 0 0 0;
    }
  }
  
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  


















/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}

.footer  .row  a{
    color: #0c0b0b;

}



/*** Footer End ***/



