a {
    text-decoration: none;
}

button {
    border-radius: 0px;
}

/*** 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;
    border-radius: 0;
}

.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 ***/


/*** Topbar Start ***/
.topbar-start {
    background-color: #0B49B0;
}

.icon-class {}

.topbar .top-info {
    letter-spacing: 1px;
}

.top-info a{
    color: #FFFFFF;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 10s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: 100%;}
    to {left: -100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.logo-header {
    padding: 10px;
}

.logo-header img {
    width: 100px;
}

.navbar-toggler  {
    background-color: #000000;
}
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 20px;
    /* color: var(--bs-dark); */
    color: #0E0D1B;
    font-size: 18px;
    outline: none;
    
}

.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;
}

@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;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

.phone-icon {
    color: #000000;
}

/*** Navbar End ***/


/*** Carousel Start ***/
.carousel-inner {
    max-width: 100%;
    /* display: flex;
    flex-wrap: wrap;
    justify-content: center; */
}

.carousel-item {
    position: relative;
    max-width: fit-content;
}

.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: 60px;
    height: 42px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
    padding: 15px;
}

.carousel-control-prev:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-control-next {
    width: 60px;
    height: 42px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
    padding: 15px;
}

.carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 0px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: #f5f6f8;
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 0px;
}

#carouselId .carousel-indicators li {
    width: 25px;
    height: 5px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

@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;
    }
}

@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(../img/experiencing-vr.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);
}

.slider {
      width: 100%;
      height: 5vh;
      /* overflow: hidden; */
      background-color: #fff;
      border-top: 2px solid #0078d4;
      border-bottom: 2px solid #0078d4;
      padding: 0px;
}

.slide-track {
      display: flex;
      width: calc(200%);
      animation: scroll-left 15s linear infinite;
}


@keyframes scroll-left {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
}

/* @media (max-width: 768px) {
      .slide {
        width: 180px;
        font-size: 14px;
        margin-right: 30px;
      }
} */

/*** Carousel End ***/

/* About us*/

.about-text p {
    font-size: 1.2em;
    text-align: justify;
}

.subtitle {
   background-color: #e8eaf0;
   opacity: 1;
    padding: 10px;
    display: inline;
    text-transform: uppercase;
    font-size: 16px; 
}

.about-section-reveal {
    position: relative;
}

.about-section-reveal::after {
    content: '';
    position: absolute;
    background-image: url(../img/squre-bg-img.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    right: 0;
    bottom: 0;
    width: 52px;
    height: 52px;
    z-index: 1;
}

*, ::after, ::before {
    box-sizing: border-box;
}

/*End About us*/


/* Area of Focus */

.focus-tile {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    align-items: center;
}

.ms {
    grid-column: span 3;
}

.vs {
    grid-column: span 2;
}

@media only screen and (max-width:600px) {
    .ms {
    grid-column: span 2;
}
.fn {
    grid-column: span 2;
}
    .vs {
    grid-column: span 2;
}

}

.focus-box {
    display: flex;
    height: 200px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.focus-box:hover {
}

.focus-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.5s ease;
}

.focus-box:hover img {
    transform: scale(1.1); 
}

.focus-box h5{
    position: absolute;
    color: #ffffff;
    margin-bottom: -150px;
}


/* Area of Focus End */

/*** Services Start ***/
.services {
    /* background-color: #f5f6f8; */
}

.service-h5 {
    background-color: var(--bs-white);
    padding: 10px;
    display: inline;
    text-transform: uppercase;
    font-size: 16px;
}

.services .services-item {
    /* box-shadow: 0 0 60px rgba(0, 0, 0, .2); */
    width: 100%;
    height: 100%;
    background-color: var(--bs-white);
    padding: 10px 0;
    position: relative;
}

.services-content {
    cursor: pointer;
}

.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 0px 0px 0 0;
    background: rgba(3, 43, 243, 0.8);
    opacity: 1;
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
}

.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-item:hover .services-content-icon a{
    color: var(--bs-white) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

.services-img img{
    width: 250px;
    border-radius: 10px;
    margin: 10px;
}

.btn-service {
    display: inline;
    width: 300px;
    margin: auto;
    margin-top: 40px;
}

/* service-hide-and-open start */
.service-category-list ul {
      list-style: none;
      padding: 0;
}

.service-category-list li {
    margin-bottom: 10px;
}

    .service-category-list a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        display: block;
        padding: 8px 10px;
        transition: all 0.3s ease;
    }

    .service-category-list a.active {
      background-color: var(--bs-primary);
      color: #fff;
    }

    .service-content-item {
      display: none;
      animation: fadeIn 0.5s ease;
      font-size: 1.1em;
      text-align: justify;
    }

    .service-content-item.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

/* service-hide-and-open end */

/* service-why-choose-us start */

.service-why-choose-us {
    background-color: #f5f6f8;
    text-align: justify;
}

.service-why-choose-us-list {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 35px;
    font-size: 1.1em;
}

/* service-why-choose-us start */

/* service-sidebar start*/
.service-sidebar {
    
}

.service-category-list {
    padding: 30px;
    border: 1px solid #ecedf0; 
}

.service-category-list h3 {
    text-transform: capitalize;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ecedf0;
}

.service-category-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-category-list ul li {
    margin-bottom: 20px;
}

*, ::after, ::before {
    box-sizing: border-box;
}

.service-category-list ul li a {
    display: block;
    position: relative;
    background: transparent;
    color: var(--bs-dark);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.service-category-list ul li a:hover {
    color: var(--bs-primary);
}

.service-category-list ul li a::after {
    content: '\f062';
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    display: block;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translate(0px, -50%) rotate(45deg);
    color: var(--bs-primary);
    transition: all 0.3s ease-in-out;
}

.service-text-entry {
    text-align: justify;
}

/* service-sidebar end*/

/* Service Contact Us Start */

.service-contact {
    padding: 100px 0;
    background: linear-gradient(186.24deg, rgba(14, 13, 27, 0.63) 4.68%, rgba(14, 13, 27, 0.9) 94.91%), url(../img/analyst.jpg) no-repeat center center;
    background-size: cover;
    color: var(--bs-white);
}

.service-contact-content {
    text-align: center;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}

.service-contact-text {
    background-color: var(--bs-primary);
    color: var(--bs-white);
    display: inline;
    padding: 10px;
}

.section-title h2{
    color: var(--bs-white);
}

.get-ready {
    margin-top: 30px;
}

.service-content-body {
    position: relative;
    font-size: 1.1em;
}

.service-content-body::before {
    position: absolute;
    content: '';
    background: url(../img/icon-circle-arrow.svg) no-repeat left bottom;
    background-size: 100% auto;
    width: 85px;
    height: 85px;
    bottom: -55px;
    left: 50px;
    animation: arrowmoveobjects 2s infinite linear alternate;
}

/* @media only screen and (max-width: 767px) {
    .service-content-body::before {
        width: 55px;
        height: 60px;
        left: 30px;
        bottom: -70px;
}
} */

@media only screen and (max-width: 991px) {
    .service-content-body::before {
        width: 55px;
        height: 60px;
        bottom: -30px;
        left: 30px;
    }
}

/* Service Contact Us End */

/*** Services End ***/

/* Why Choose Us Start  */
.why-choose-left-row {
    margin: auto;
}

.why-choose-itm {
    position: relative;
    border: 1px solid #f5f6f8;
    text-align: center;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    /* transition: all 0.4s ease-in-out;
    overflow: hidden;
    cursor: none; */
}

.why-choose-icon i {
    font-size: 3em;
}

/* Why Choose Us End  */

/*** Project Start ***/
.logo-tile {
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
    margin: auto;
}

.logo {
    border: 1px solid #645c5c;
}


.logo img {
    max-height: 50vh;
	max-width: 96px;
	margin: 20px;
	transition: all 1s;
}

.logo img:hover {
	transform: scale(1.1);
}

/*** Project End ***/


/*** Blog Start ***/
.blog-item {
    position: relative;
    border: 1px solid #ecedf0;
    margin-bottom: 20px;
}

.post-item-content {
    border-top: 0;
    padding: 25px;
    overflow: hidden;
}

.post-item-meta {
    border-bottom: 1px solid #ecedf0 !important;     
    padding-bottom: 15px;
    margin-top: -15px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #0E0D1B;
}

.post-item-meta ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.post-item-meta ul li a {
    color: var(--primary-color);
    text-transform: capitalize;
}

a {
    text-decoration: none;
}

.post-item-meta ul li {
    display: inline-block;
    margin-right: 20px;
}

.post-item-meta ul li:last-child {
    float: right;
}

.post-item-body {
    margin-bottom: 20px;
}

.post-item-body h2 {
    line-height: 1.4em;
}

.post-item-body h2 a {
    color: #0E0D1B;
}

.post-item-meta {
    padding-bottom: 15px;
    margin-bottom: 15px;
}

/*** Blog End ***/

/* Open Article Start */
.article-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.article-content {
  background: #fff;
  color: #333;
  border-radius: 10px;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

/* Top section layout */
.article-header {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.article-image {
  flex: 1 1 45%;
  max-width: 45%;
  height: auto;
  object-fit: cover;
}

.article-intro {
  flex: 1 1 50%;
}

.article-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 32px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  color: #ff4b4b;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .article-header {
    flex-direction: column;
  }

  .article-image,
  .article-intro {
    max-width: 100%;
  }

  .article-title {
    font-size: 1.4rem;
  }

  .article-content {
    padding: 20px;
  }
}
/* Open Article End  */

/*** Team Start ***/

.shadow-right {
    box-shadow: 20px 25px 0 6px var(--bs-primary);
    border-radius: 8px;
}

.team-item {
    border-top: 30px solid var(--bs-secondary) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    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-secondary);
    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-secondary);
}

.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;
    background: var(--bs-secondary);
    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 {
    background: var(--bs-primary);
    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;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
    background: #e3f0eb;

}

.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;
    box-shadow: 0 0 30px #DDDDDD;
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(49, 7, 201, 0.3), rgb(245, 247, 246)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: var(--bs-primary);
}

.contact-form {
    background: #26d48c;
}

/*** Contact End ***/


/* Build Start */
.build-container {
    display: flex;
    justify-content: center; 
    align-items: center; 
    /* min-height: 100vh;  */
    text-align: justify; 
}

.build {
    background: no-repeat url(../img/bg-cover2.png);
    background-size: cover; 
    color: #ffffff;
    padding: 30px 50px;
    max-width: 100%; 
    border-radius: 12px;
    /* box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3); */
}

.button-bl {
    margin: auto;
        text-align: center;

}

.build h3 {
    color: #ffffff;
}

.button-build {
    background-color: var(--bs-white);
    border-radius: 10px 10px 5px 5px;
}

/* Build 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 End ***/