/* Stylesheet for Techfyte */
.container {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0px 20px;
}
ul li{
  font-family: "Urbanist", serif !important;
}
.custom-container-spacing {
  padding: 80px 0px 80px 0px;
}

.custom-padding-bottom {
  padding-bottom: 5px;
}

.custom-container-spacingsm {
  padding: 30px 0px;
}

.custom-primary-blue {
  color: var(--color-blue);
}
.text-link {
  color: var(--color-blue) !important;
}

.text-white {
  color: var(--color-white) !important;
}

.text-black {
  color: var(--color-black) !important;
}

.color-black {
  color: var(--color-black) !important;
}
.text-black {
  color: var(--color-black) !important;
}

.bg-blue {
  background: #0a2658
    radial-gradient(88.33% 88.33% at 36.98% 11.67%, #0a2658 0%, #04183e 100%) !important;
}

.custom-secondary-radial * {
  color: var(--white) !important;
}

.custom-secondary-radial * > .text-black {
  color: var(--color-black) !important;
}

/* .custom-secondary-radial p{
    color: var(--white) !important;
    /* opacity: 0.6 !important; 
}*/

.mega-menu-link {
  font-family: var(--font-urbanist) !important;
  font-weight: var(--fw-600) !important;
}

.arrow_circle_blue_caret {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  border: 2px solid var(--color-blue);
  transition: border-color 0.3s ease-in-out;
}

.arrow_circle_blue_caret i {
  font-size: 24px;
  padding: 0px;
  padding-left: 0px;
  padding-bottom: 0px;
  color: var(--color-blue);
  transition: color 0.3s ease-in-out;
}

.arrow_circle_blue:hover i {
  color: var(--color-white) !important;
  transition: color 0.3s ease-in-out;
}

.arrow_circle_white {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  transition: border-color 0.3s ease-in-out;
}

.arrow_circle_white i {
  transform: rotate(-45deg);
  font-size: 24px;
  padding: 0px;
  padding-left: 0px;
  padding-bottom: 0px;
  color: var(--color-white);
  transition: color 0.3s ease-in-out;
}

.arrow_circle_white:hover {
  background: var(--color-white);
  transition: background 0.3s ease-in-out;
}

.arrow_circle_white:hover i {
  color: var(--color-blue);
  transition: color 0.3s ease-in-out;
}

.wc-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 152px;
  height: 152px;
  font-family: "Urbanist", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
  border-radius: 100%;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}

/*---------------------------background-lines styling -----------------*/
.background-lines {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
  pointer-events: none;
  overflow: hidden;
}

.background-lines ul {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.background-lines li {
  height: 100%;
  width: 2px;
  background-color: #f0f0f0;
  list-style-type: none;
  position: relative;
  overflow: hidden;
}

.background-lines li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50.28px;
  background: linear-gradient(
    var(--color-blue) 00,
    var(--color-blue),
    var(--color-blue) 00
  );
  top: -20%;
  animation: flowOneByOne 5s ease-in infinite;
  opacity: 0.8;
}

@keyframes flowOneByOne {
  0% {
    top: -40%;
  }

  100% {
    top: 100%;
  }
}

.background-lines li:nth-child(1)::after {
  animation-delay: 11s;
  margin-top: 100px;
}

.background-lines li:nth-child(2)::after {
  animation-delay: 7s;
  margin-top: -20px;
}

.background-lines li:nth-child(3)::after {
  animation-delay: 8s;
  margin-top: -50px;
}

.background-lines li:nth-child(4)::after {
  animation-delay: 7s;
  margin-top: -50px;
}

.background-lines li:nth-child(5)::after {
  animation-delay: 13s;
  margin-top: 100px;
}

.background-lines li:nth-child(6)::after {
  animation-delay: 10s;
  margin-top: -50px;
}

.background-lines li:nth-child(7)::after {
  animation-delay: 9s;
  margin-top: -10px;
}
/* For all input fields */
input:-webkit-autofill {
  background-color: transparent !important;
  box-shadow: 0 0 0px 1000px white inset !important;
}

/* For Firefox */
input:-moz-autofill {
  background-color: transparent !important;
  box-shadow: 0 0 0px 1000px white inset !important;
}
/*------------------------------------ Header ------------------------------------- */
header {
  padding-top: 37px;
  padding-bottom: 5px;
}

header .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .nav-container img {
  max-width: 240px;
  width: 100%;
  height: auto;
}

header .menu ul {
  display: flex;
  gap: 47px;
  align-items: center;
}

.circle-btn a {
  display: flex;
  gap: 14px;
  font-size: var(--font-p1);
  align-items: center;
  font-weight: 700;
}

.circle-btn span {
  display: flex;
  height: 52px;
  width: 52px;
  transition: color 0.3s ease-in-out;
  border: 2px solid var(--color-blue);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.circle-btn span i {
  transform: rotate(-45deg);
  padding-left: 2px;
  padding-bottom: 2px;
  color: var(--color-blue);
  transition: color 0.3s ease;
  margin-top: 4px;
}

.circle-btn.white span {
  border: 2px solid var(--color-white);
}

.circle-btn.white span i {
  color: var(--color-white);
}

/* ====================================== Globals ====================================== */
.banner-bottom-left img,
.banner-top-right img,
.business-image img {
  height: auto;
}

.innovative,
.solution,
.services {
  /* padding-bottom: 120px; */
}

.excellence {
  font-family: "Oswald", serif;
}

.view_btn a {
  text-decoration: none;
}

.view_btn a i {
  transform: rotate(-45deg);
  padding-left: 5px;
}

.view_btn.circle-bg-blue {
  width: 174px;
  height: 174px;
  gap: 20px;
  border-radius: 50%;
  background: var(--color-blue);
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 30px 28px;
  font-family: "Urbanist", serif;
  font-size: 20px;
  font-weight: 700;
  opacity: 1 !important;
}

.view_btn.circle-bg-blue.bg-white {
  background-color: var(--color-white);
  border: 2px solid var(--color-blue);
}

.view_btn.circle-bg-blue a {
  display: flex;
  flex-direction: column-reverse;
  color: var(--color-white);
  text-align: center;
}

.view_btn.circle-bg-blue.bg-white a {
  color: var(--color-black);
}

.w-full {
  width: 100%;
}

.custom-secondary-bg-white,
.solution {
  background-color: var(--color-white);
}

@keyframes autoplay {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.gray-btn {
  height: 75px;
  width: 75px;
  padding: 15px;
  background-color: #f2f2f2;
  border-radius: 50%;
}

.gray-btn img {
  width: 47px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
}

.gray-btn img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

:root {
  --primary: #007bff;
  --white: var(--color-white);
}

.wc-btn-primary {
  border: 2px solid var(--primary);
}

.wc-btn-secondary {
  color: var(--white);
  border: 2px solid var(--white);
}

.wc-btn-secondary:hover,
.wc-btn-primary:hover {
  color: var(--white);
  border: 2px solid var(--primary);
}

.wc-btn-secondary:hover span,
.wc-btn-primary:hover span {
  width: 350px;
  height: 350px;
}

.wc-btn-secondary i,
.wc-btn-primary i {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  padding-left: 5px;
}

.wc-btn-secondary span,
.wc-btn-primary span {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  background-color: var(--primary);
  z-index: -1;
  border-radius: 100%;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.wc-btn-secondary {
  border: 2px solid var(--white);
  color: var(--white);
}

.btn_wrapper,
#btn_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 152px;
  width: 152px;
  border-radius: 100%;
}

.btn-item {
  position: absolute;
}

/*============================= section resources styling starts =========================================*/
.swiper-container {
  width: calc(64% + 40px);
}

.swiper-container .owl-item {
  border: 2px solid #f0f0f0;
  padding: 20px 28px 30px 28px;
}

.author-info {
  margin-top: 20px;
}

.author-info .rating {
  margin-top: 10px;
}

.author-info .rating img {
  max-width: 200px;
}

.owl-carousel__nav {
  display: flex;
  gap: 20px;
}

.owl-carousel__prev,
.owl-carousel__next {
  border: 2px solid var(--color-blue);
  background-color: transparent;
  color: var(--color-blue);
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.owl-carousel__prev i,
.owl-carousel__next i {
  font-size: 24px;
  line-height: 24px;
  transition: 0.3s ease-in-out;
}

.owl-carousel__prev:hover,
.owl-carousel__next:hover {
  background-color: var(--color-blue);
}

.owl-carousel__prev:hover i,
.owl-carousel__next:hover i {
  color: white;
}

/*.fade {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}*/

@keyframes float {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-20px);
  }

  100% {
    transform: translatey(0px);
  }
}

.floating-image {
  animation: float 6s ease-in-out infinite;
}

/* =============== Footer Styling Begins ================= */
footer {
  overflow: hidden;
}

footer .custom-clr {
  color: var(--color-white) !important;
}
 footer .contact-img {
   min-height: 32px;
   max-height: 32px;
 }
footer .more a {
  color: var(--color-blue);
}

footer .contact-us {
  border-top: 1px solid #1a2f56;
  border-bottom: 1px solid #1a2f56;
  z-index: 100;
}

.HeadingText {
  position: absolute;
  top: 26px;
  left: -217px;
  z-index: -1;
}

footer .disclaimer {
  color: #8c8c8c;
  padding: 20px 0 40px;
  z-index: 100;
}

footer .back-to-top {
  bottom: 16%;
  right: 1%;
  z-index: 100;
  border-radius: 50%;
  background-color: #1a2f56;
  border: none;
  width: 36.03px;
  height: 36.03px;
  opacity: 2px;
}

.footer-list li a,
.footer-menus li a {
  font-size: clamp(16px, 1.25vw, 20px);
  /* line-height: 40px; */
  line-height: 1.8;
  color: var(--color-white);
  font-family: "Urbanist", sans-serif;
  font-weight: 300;
  transition: 0.5s ease;
}

.footer-list li a:hover {
  color: #007bff;
}

.footer-list-container {
  display: flex;
  justify-content: space-between;
}

.footer-list li.more a {
  color: #007bff;
}

.footer-list li.more a:hover {
  color: var(--color-white);
}

.project .sticky-head p:empty {
  display: none;
}

.ai-carousel .owl-item {
  opacity: 0;
  transition: 1s ease;
}

.ai-carousel .owl-item.active {
  opacity: 1;
}
.excellence .stats {
  font-size: 60px;
}
/* .contact-us .p2-bold {
  font-size: 20px;
} */

.sticky-top {
  position: sticky;
  top: 100px !important;
}
/*============================= Media Queries ==================================*/
@media (min-width: 1600px) {
  .owl-carousel__prev,
  .owl-carousel__next {
    min-width: 54px;
    min-height: 54px;
    max-width: 54px;
    max-height: 54px;
  }
}

@media only screen and (max-width: 1680px) {
  .container {
    max-width: 1380px;
  }

  /* h1 {
        font-size: 120px;
        line-height: 140px;
    }

    h2 {
        font-size: 86px;
        line-height: 115px;
    }

    h3 {
        font-size: 54px;
        line-height: 70px;
    }

    .list-unstyled h3 {
        font-size: 40px;
        line-height: 50px;
    }

    h4 {
        font-size: 30px;
        line-height: 40px;
    }

    h5, .heading5 {
        font-size: 24px;
        line-height: 34px;
    }

    .p2-regular, .p2-bold {
        font-size: 20px;
        line-height: 34px;
    }

    .p1-regular, .view_btn.circle-bg-blue a, .contact-us .p2-bold {
        font-size: 20px;
        line-height: 1.5;
    } */

  .custom-container-spacing {
    padding: 90px 0px;
  }

  .custom-padding-bottom {
    padding-bottom: 90px;
  }

  .innovative,
  .solution,
  .services {
    /* padding-bottom: 90px; */
  }

  .list-unstyled.list-desktop {
    padding: 20px 0px;
    margin-bottom: 10px;
  }

  .portfolio__text {
    font-size: 90px;
    line-height: 90px;
  }

  .arrow_circle_blue_caret {
    height: 42px;
    width: 42px;
  }

  .arrow_circle_blue_caret i {
    font-size: 18px;
  }

  .gif-slider .col-11 {
    width: 90%;
  }

  .gif-slider .col-11 .row {
    gap: 20px;
  }

  .gif-slider .col-4 {
    width: 30%;
    padding: 0px;
    margin: 0px;
  }

  .gif-slider .col-4 img {
    width: 100%;
  }

  .gif-slider .col-1 {
    width: 10%;
  }

  .view_btn.circle-bg-blue {
    width: 135px;
    height: 135px;
  }

  .form-img img {
    max-width: 140px;
  }
  .excellence .stats {
    font-size: 44px;
  }
}

@media only screen and (max-width: 1440px) {
  .container {
    max-width: 1140px;
  }
  /* 
    h1 {
        font-size: 110px;
        line-height: 140px;
    }

    h2 {
        font-size: 76px;
        line-height: 100px;
    }

    h3 {
        font-size: 38px;
        line-height: 1.5;
    }

    .list-unstyled h3 ,h3.reveal,.brands h5{
        font-size: 38px;
        line-height: 1.5;
    }
    h4,.excellence .stats {
        font-size: 32px;
        line-height: 1.5;
    }

    h5, .heading5 {
        font-size: 32px;
        line-height: 1.5;
    }

    h6 {
        font-size: 16px;
        line-height: 1.5;
    }

    p {
        font-size: 20px;
        line-height: 1.5;
    }

    .p2-regular, .p2-bold {
        font-size: 20px;
        line-height: 1.5;
    } */

  a,
  .circle-btn span i,
  .arrow_circle_white i,
  .contact-form .start-project button:hover .arrow_circle_white i {
    font-size: 20px;
    line-height: 1.5;
  }
  .expertise .service-card h4 {
    font-size: 32px;
    line-height: 1;
  }
  .custom-container-spacing {
    padding: 45px 0px;
  }

  .custom-padding-bottom {
    padding-bottom: 45px;
  }

  .innovative,
  .services,
  .contact-form,
  .solution {
    /* padding-bottom: 45px; */
  }

  header .menu ul {
    gap: 25px;
  }

  header .nav-container img {
    max-width: 180px;
  }

  .circle-btn span,
  .arrow_circle_white,
  .contact-form .start-project button:hover .arrow_circle_white {
    height: 40px;
    width: 40px;
  }

  .ai-carousel .owl-item {
    padding-left: 0px;
  }

  #tech-grid .card {
    padding: 20px;
  }

  #tech-grid .card img {
    height: 50px;
  }

  /* .wc-btn {
        width: 140px;
        height: 140px;
        font-size: 18px;
    } */

  .footer-list li a {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 5px;
    display: inline-block;
    width: 100%;
  }
  #section-blog h5.heading5 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1280px) {
  /* h2 {
        font-size: 68px;
        line-height: 94px;
    } */

  /* .wc-btn {
        gap: 16px;
        width: 135px;
        height: 135px;
        font-size: 18px;
    } */

  /****************************/
  .list-unstyled h3,
  h3.reveal,
  .brands h5,
  h3 {
    font-size: 32px;
  }
  .expertise .service-card h4,
  .excellence .stats,
  h5,
  .heading5,
  h4,
  .excellence .stats {
    font-size: 28px;
  }
  .footer-list li a,
  .p2-regular,
  .p2-bold,
  .p1-regular,
  .view_btn.circle-bg-blue a,
  .contact-us .p2-bold,
  section .excellence .info,
  p {
    font-size: 18px;
  }
}

@media only screen and (max-width: 1024px) {
  /* h1 {
        font-size: 90px;
        line-height: 120px;
    } */
  /* .wc-btn {
        gap: 12px;
        width: 130px;
        height: 130px;
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
    } */

  /* .p2-regular, .p2-bold {
        font-size: 16px;
        line-height: 26px;
    } */

  .arrow_circle_blue_caret {
    height: 36px;
    width: 36px;
  }

  .arrow_circle_blue_caret i {
    font-size: 16px;
  }

  .gray-btn {
    width: 60px;
    height: 60px;
  }

  .owl-carousel__prev i,
  .owl-carousel__next i {
    font-size: 18px;
    line-height: 18px;
  }

  .author-info .rating {
    max-width: 120px;
  }

  .swiper-container .owl-item {
    border: 2px solid #f0f0f0;
    padding: 18px 22px 26px 22px;
  }

  header a {
    font-size: 18px;
  }

  /**************/
  .list-unstyled h3,
  h3.reveal,
  .brands h5,
  h3 {
    font-size: 28px;
  }

  .expertise .service-card h4,
  .excellence .stats,
  h5,
  .heading5,
  h4,
  .excellence .stats {
    font-size: 24px;
  }

  .footer-list li a,
  .p2-regular,
  .p2-bold,
  .p1-regular,
  .view_btn.circle-bg-blue a,
  .contact-us .p2-bold,
  section .excellence .info,
  p {
    font-size: 18px;
  }
}

@media screen and (max-width: 991px) {
  /* h1 {
        font-size: 81px;
        line-height: 100px;
    }

    h2 {
        font-size: 50px;
        line-height: 68px;
    } */

  header {
    box-shadow: 0px 4px 35px #0000001a;
    background: var(--color-white);
    padding: 16px 0;
  }

  header .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    position: absolute;
    z-index: 9999;
    top: 60px;
    right: 0;
    width: 100%;
    border: 2px solid #f0f0f0;
    background: var(--color-white);
  }

  header .navbar-nav li {
    width: 100%;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
    justify-content: center;
    padding: 10px 0;
    flex-direction: column;
    align-items: center;
  }

  header .menu ul {
    gap: 0px;
    flex-direction: column;
  }

  header .menu .circle-btn a {
    display: flex;
    justify-content: center;
    padding: 20px 0;
  }

  body .secret-success p {
    /* font-size: 16px !important; */
  }
  /* .wc-btn {
        gap: 12px;
        width: 108px;
        height: 108px;
        font-size: 14px;
        font-weight: 700;
        line-height: 18px;
    } */

  .form-img {
    padding: 30px 0;
  }

  .swiper-container {
    width: calc(55% + 34px);
  }

  .gray-btn {
    width: 50px;
    height: 50px;
  }

  .gray-btn img {
    max-width: 25px;
  }
    footer .contact-img {
      min-height: auto;
      max-height: inherit;
      min-width: 24px;
      max-width: 24px;
    }
}

@media screen and (max-width: 767px) {
  .section-contactus .custom-bg-primary-blue {
    width: 100%;
  }
  .footer-list li a {
    font-size: 16px;
    line-height: 24px;
  }
  .custom-container-spacing {
    padding: 30px 0px;
  }

  .custom-padding-bottom {
    padding-bottom: 30px;
  }

  .innovative,
  .services,
  .contact-form,
  .solution {
    /* padding-bottom: 30px; */
  }

  .work_info {
    max-width: 600px;
    margin: auto;
  }

  .sticky-head {
    position: relative;
    top: 0px;
  }

  .gray-btn {
    width: 60px;
    height: 60px;
  }

  .gray-btn img {
    max-width: 35px;
  }

  /* .wc-btn {
        gap: 14px;
        width: 125px;
        height: 125px;
        font-size: 16px;
    } */

  .gif-slider {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }

  .gif-slider.active {
    display: block;
    max-height: 500px;
  }

  footer .list-group-item {
    border: none;
    border-bottom: 1px solid #1a2f56;
    background: transparent;
    padding: 15px 0 7px 0;
  }

  footer .list-group {
    background: transparent;
  }

  footer button {
    border: 0;
    background: transparent;
  }

  footer button i {
    color: var(--color-blue);
    font-size: 16px;
  }

  footer .address .email,
  footer .address .phone,
  footer .address .location {
    gap: 20px;
  }

  footer .back-to-top {
    top: 16px;
  }

  footer .contact-us {
    padding: 0 0 20px 0;
  }

  footer .disclaimer {
    padding: 20px 0 20px;
  }

  footer .contact-us #text-mob {
    font-size: 100px;
  }
  /**************/
  .list-unstyled h3,
  h3.reveal,
  .brands h5,
  h3 {
    font-size: 24px;
  }

  .expertise .service-card h4,
  .excellence .stats,
  h5,
  .heading5,
  h4,
  .excellence .stats {
    font-size: 20px;
  }

  .footer-list li a,
  .p2-regular,
  .p2-bold,
  .p1-regular,
  .view_btn.circle-bg-blue a,
  .contact-us .p2-bold,
  section .excellence .info,
  p,
  section .healthcare-info {
    font-size: 16px;
  }
}

@media screen and (max-width: 680px) {
  /* h1 {
        font-size: 56px;
        line-height: 75px;
    }

    h2 {
        font-size: 40px;
        line-height: 52px;
    } */

  .portfolio__text {
    font-size: 60px;
    line-height: 90px;
  }

  .footer-list li a,
  .p2-regular,
  .p2-bold,
  .p1-regular,
  .view_btn.circle-bg-blue a,
  .contact-us .p2-bold,
  section .excellence .info,
  p {
    font-size: 16px;
  }

  .p2-bold {
    font-weight: 500;
  }

  .nav-container img {
    max-width: 160px;
  }

  .work_info {
    max-width: 450px;
  }



  .build-container img {
    max-width: 90px;
  }

  .gray-btn {
    width: 40px;
    height: 40px;
  }

  .gray-btn img {
    max-width: 25px;
  }

  .form-img {
    padding: 10px 0;
  }

  .grey-btn-container {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 580px) {
  /* h1 {
        font-size: 46px;
        line-height: 50px;
    }

    h2 {
        font-size: 32px;
        line-height: 42px;
    } */

  .nav-container img {
    max-width: 140px;
  }

  .circle-btn span,
  .arrow_circle_white,
  .contact-form .start-project button:hover .arrow_circle_white {
    height: 35px;
    width: 35px;
  }

  a,
  .circle-btn span i,
  .arrow_circle_white i,
  .contact-form .start-project button:hover .arrow_circle_white i {
    font-size: 18px;
  }

  .circle-btn span i {
    margin-top: 2px;
  }

  .brands .slider-container {
    padding: 0;
  }

  .portfolio__text {
    /* padding: 0 0 40px 0; */
  }

  .author-info .rating {
    max-width: 98px;
  }

  .gif-slider .btn_wrapper {
    padding: 10px 0px 20px 0px !important;
  }

  .custom-container-spacingsm {
    padding: 30px 0px;
  }

  .owl-carousel__prev,
  .owl-carousel__next {
    padding: 7px;
  }

  .owl-carousel__nav {
    gap: 10px;
  }

  footer .disclaimer {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .ques-ans .accordion-button h5 {
    font-size: 16px;
  }
  header .nav-container img {
    max-width: 120px;
  }

  header {
    padding: 18px 0;
  }

  header .navbar,
  header .navbar-brand {
    padding: 0;
  }
  body .secret-success #customAccordion h5 {
    font-size: 20px;
  }
  .portfolio__text {
    font-size: 50px;
    line-height: 74px;
  }
  .arrow_circle_blue_caret {
    height: 28px;
    width: 28px;
  }

  .arrow_circle_blue_caret i {
    font-size: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .g-0 {
    padding-right: 15px;
    padding-left: 15px;
  }

  br {
    display: none;
  }
}

.reveal {
  text-transform: capitalize;
  font-size: 56px;
}

.service-card h4 {
  font-size: 34px;
}

@media screen and (max-width: 580px) {
  .ques-ans h5.accordion-header,
  .ques-ans h5.accordion-header .heading5 {
    font-size: 16px;
    line-height: 24px;
  }
  .expertise .service-card h4 {
    font-size: 20px;
    line-height: 28px;
  }
}

@media screen and (max-width: 991px) {
  header .navbar-nav li ul.sub-menu {
    position: relative;
    padding: 0px;
    top: 12px;
    box-shadow: none;
    border-radius: 0px;
    width: 100% !important;
    min-width: 100%;
  }
  header .navbar-nav li ul.sub-menu li ul.sub-menu {
    position: relative;
  }
  header .navbar-nav li ul.sub-menu li {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    background: #f5f5f5;
  }
  .main-navigation li > ul.sub-menu li:hover > ul.sub-menu {
    position: relative !important;
    left: 0 !important;
    width: 100%;
    min-width: 100% !important;
    box-shadow: none !important;
    border-radius: 0px !important;
    top: 12px !important;
  }
  .main-navigation li > ul.sub-menu li {
    padding: 10px 0;
  }
  .main-navigation li > ul.sub-menu li a {
    color: black !important;
  }
  .main-navigation li > ul.sub-menu li:hover > ul.sub-menu li {
    background: #ebebeb;
  }
  .main-navigation li {
    position: relative;
    padding: 10px 0;
  }
  .step1.arrow-btm.menu-item-has-children::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 14px;
    height: 14px;
    content: "";
    position: absolute;
    top: 20px;
    transform: translateX(-29px);
    left: 100%;
  }
  .step2.arrow-right.menu-item-has-children::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 14px;
    height: 14px;
    content: "";
    position: absolute;
    top: 20px;
    transform: rotate(0deg) translate(-11px, 0px);
    right: 0px;
    left: auto;
  }
}

.step1.arrow-btm.menu-item-has-children::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  width: 14px;
  height: 14px;
  content: "";
  position: absolute;
  top: 20px;
  transform: translateX(10px);
}

.step2.arrow-right.menu-item-has-children::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  width: 14px;
  height: 14px;
  content: "";
  position: absolute;
  top: 20px;
  transform: rotate(-90deg) translateY(5px);
}

.step2 li:hover a,
.step3 li:hover a {
  color: #007bff !important;
}

/* single blog post */
.single-post .entry-content p,
.single-post .entry-content ul li,
.single-post .entry-content ol li {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.667;
  font-family: "Urbanist", sans-serif !important;
  color: #8c8c8c;
}
.single-post .entry-content p {
  margin-bottom: 32px;
}
.single-post .entry-content h4 {
  font-weight: 600;
  font-size: clamp(24px, 2.5vw, 30px);
  line-height: 120%;
  letter-spacing: -2%;
  margin-bottom: 26px;
  color: #000000;
}
.single-post .entry-content h3 {
  font-weight: 600;
  font-size: clamp(28px, 3.33vw, 40px);
  line-height: 120%;
  letter-spacing: -2%;
  margin-bottom: 26px;
  color: #000000;
}
.single-post .entry-content ul {
  padding-left: 40px;
  margin-bottom: 32px;
}

.single-post .entry-content ul li {
  list-style: disc;
}
.single-post .entry-content ol {
  margin-top: 32px;
}
.single-post .entry-content ol li {
  margin-bottom: 32px;
}
.single-post span.byline,
.single-post span.posted-on {
  display: flex;
  align-items: center;
  gap: 5px;
}
.single-post span.byline::before {
  content: "";
  background-image: url("../techfyte/img/author-icon.svg");
  width: 48px;
  height: 48px;
  display: inline-block;
  margin-right: 10px;
  background-size: cover;
}
.single-post span.posted-on::before {
  content: "";
  background-image: url("../techfyte/img/calander.svg");
  width: 48px;
  height: 48px;
  display: inline-block;
  margin-right: 10px;
  background-size: cover;
}
.single-post .entry-meta,
.single-post .entry-meta span a {
  font-size: clamp(18px, 2vw, 24px);
  text-transform: capitalize;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
}
.single-post .entry-meta {
  display: flex;
  justify-content: center;
  column-gap: 56px;
  margin-bottom: 24px;
  margin-top: 30px;
}
.single-post #comments.comments-area,
.single-post aside#secondary.widget-area,
.single-post .navigation.post-navigation {
  display: none;
}
.single-post .post-thumbnail.text-center img {
  width: 100%;
  max-width: 1293px;
  height: auto;
  border-radius: 12px;
}

@media only screen and (max-width: 991.98px) {
  .single-post span.byline::before,
  .single-post span.posted-on::before {
    width: 36px;
    height: 36px;
  }
}

.award-tabs .project-content h4 {
  text-align: left;
}
.award-tabs .project-content .info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.award-tabs .project-content .info > div {
  text-align: left;
}

.contact-form .start-project button {
  width: 100%;
}
/* div#page {
    overflow: hidden;
} */

.form-label {
  font-family: "Urbanist", serif;
  color: var(--color-black);
}
.contact-form form input,
.form-text,
.contact-form .start-project button {
  font-family: "Urbanist", serif;
}

/* .start-project .custom-bg-primary-blue {
    width: 100% !important;
    max-width: unset !important;
} */

footer .custom-clr {
  color: var(--color-white) !important;
}
.menu-mobile-logo {
  max-height: 30px;
}
.menu-mobile-logo img {
  max-height: 30px;
}

#mega-menu-wrap-menu-1
  #mega-menu-menu-1
  > li.mega-menu-item
  > a.mega-menu-link {
  font-family: var(--font-urbanist) !important;
}
/* Dark Box */
.dark-bg {
  background: radial-gradient(
    88.33% 88.33% at 36.98% 11.67%,
    #0a2658 0%,
    #04183e 100%
  );
}
.dark-bg h1,
.dark-bg h2,
.dark-bg h3,
.dark-bg h4,
.dark-bg h5,
.dark-bg h6,
.dark-bg p {
  color: var(--color-white) !important;
}
.glow-bg {
  position: relative !important;
}
.glow-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  background: url(../techfyte/img/glow-bg.png) center no-repeat;
  background-size: cover;
}
.cards-listing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  gap: 16px;
}
.cards-listing .itembx {
  border: 1px solid var(--color-light-grey);
  width: 100%;
  padding: 14px 10px;
}
.techstacknew .tab-content img {
  height: 50px !important;
  margin-bottom: 15px !important;
}
.techstacknew .tabs_accordion-section-horizontal .tab-content img {
  margin: 0 !important;
}
.techstacknew #myTab .nav-link::after{
display: none;
}

.coinbase_left .block_inner p {
  color: var(--white) !important;
  opacity: 0.6 !important;
}
.bg-blue .card-heading-container > p,
.bg-blue .header-content > p {
  color: var(--white) !important;
  opacity: 0.6 !important;
}

.listing-expertise {
  background: #1a2f56;
  color: #fff;
  padding: 30px;
}
.listing-expertise ul {
  display: flex;
  flex-direction: column;
}
.box-list {
  gap: 10px;
}

.box-list li,
.list-check {
  padding: 5px 10px 5px 40px;
  border-radius: 6px;
  position: relative;
}

ul.box-list li::after,
.list-check::after {
  content: "";
  position: absolute;
  left: 0;
  background-image: url("./img/tick.svg");
  height: 24px;
  width: 24px;
  background-size: 24px;
  top: 0.4rem;
}

.box-list .w-cus-50 {
  flex: 1 1 calc(50% - 20px);
}
.listing-expertise h5 {
  border-bottom: 1px solid #ffffff33;
}
@media(max-width: 991px){
  .card-content-container h4.text-black {
      color: var(--color-black) !important;
    }
}
/**************************/


.why-choose .feature img,
.service-img,
.icon img,
.blue-tick img ,.box-section .img-container>img{
  max-width: 48px !important;
  max-height: 48px !important;
  min-height: 48px !important;
  min-width: 48px !important;
}
/**************************/
.stacked-cards {
  text-align: center;
}
.feature-text>p {
  font-size: clamp(16px, 1.042vw, 20px) !important;
}

/*******************/
#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link {
  padding: 0px 10px !important;
}
@media only screen and (min-width: 992px) {
  #mega-menu-wrap-menu-1
    #mega-menu-menu-1
    > li.mega-menu-flyout
    ul.mega-sub-menu {
    width: 280px;
  }
  #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
    position: absolute;
    left: auto;
    top: 0;
    right: 100%;
  }
  .tabs_accordion-section aside,
  .tabs_accordion-section main {
    max-height: 400px; 
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px;
  }
  #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-flyout:nth-child(1) ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu,
  #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-flyout:nth-child(2) ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu{
    left: 100%;
    top: 0;
    right: auto;
  }
}
/*******************/

@media (min-width: 1200px) and (max-width: 1441px) {
  body .container {
    max-width: 95%;
  }
}
@media (max-width: 991px) {
  .wide .tabs_accordion-section main {
    max-height: 400px; 
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px;
  }
  .why-choose .feature img,
  .service-img,
  .icon img,
  .blue-tick img,
  .box-section .img-container>img {
    max-width: 36px !important;
    max-height: 36px !important;
    min-height: 36px !important;
    min-width: 36px !important;
  }
  body .steps-cards .card-content-container::before {
    font-size: 78px;
  }
  ul.box-list li::after,
  .list-check::after {
    height: 20px;
    width: 20px;
    top: 0.3rem;
    background-size: 20px;
    background-repeat: no-repeat;
  }

  .box-list li,
  .list-check {
    padding: 5px 10px 5px 30px;
  }
}
@media (max-width: 767.98px) {
  .box-list {
    flex-direction: column;
  }
  .listing-expertise {
    padding: 20px;
  }

  .why-choose .feature img,
  .service-img,
  .icon img,
  .blue-tick img,
  .box-section .img-container > img {
    max-width: 32px !important;
    max-height: 32px !important;
    min-height: 32px !important;
    min-width: 32px !important;
  }

  /* Work */
  .row_bottom {
    margin-top: 23vh;
  }
}
/***********/
.contact-form .contact-content {
  overflow: hidden !important;
}
.site-branding {
  max-width: 160px;
}
.card-content-container h4,.service-card h4 {
  /* font-size: clamp(18px, 2.5vw, 36px) !important; */
  font-size: clamp(20px, 2.083vw, 30px) !important;
}
.brands h4{
  font-size: clamp(18px, 2.778vw, 40px) !important;
}
/* Menus */
@media screen and (min-width: 991px) and (max-width: 1280px) {
  #mega-menu-wrap-menu-1
    #mega-menu-menu-1
    > li.mega-menu-item
    > a.mega-menu-link {
    font-size: 16px !important;
  }
  #mega-menu-wrap-menu-1 #mega-menu-menu-1 {
    margin: 0px !important;
    padding: 0px !important;
  }
}

.main-hero-section {
  /* overflow: hidden; */
}


.page-template-page-designservices .project_work .work_item img {
    height: inherit;
    object-fit: cover;
}

.project_work {
    background: radial-gradient(circle, #0A2658, #04183E);
    color: white;
    width: 100%;
    padding: 40px 0;
    box-sizing: border-box;
    font-family: "Oswald", serif;
}

.top_row {
    overflow: hidden;
}

.project_work .work_heading h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 50px;
    padding: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.project_work .work_item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.project_work .item_info {
    bottom: 0;
    padding: 20px;
    z-index: 999;
    max-width: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
}

.project_work .item_info h3 {
    font-size: 34px;
    font-weight: 500;
}

.project_work .item_info a {
    color: #fff;
    gap: 10px;
    font-size: 18px;
    font-family: "Urbanist", serif;
    text-decoration: none;
}

.project_work .item_info a div.arrow_circle {
    height: 52px;
    width: 52px;
    border: 2px solid #fff;
}

.project_work .item_info a div.arrow_circle i {
    transform: rotate(-45deg);
    text-decoration: none;
}

.project_work .row_top .work_item:nth-child(even) .work_info {
    top: 50%;
}

.project_work .view_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: auto;
    margin-top: 100vh;
}

.portfolio__item {
    -webkit-transform: perspective(4000px) rotateX(90deg);
    transform: perspective(4000px) rotateX(90deg);
}

.portfolio__text {
    text-align: center;
    font-size: 150px;
    font-weight: 500;
    color: var(--white);
    padding: 00px 0 30px;
    opacity: 1;
}

@media only screen and (min-width: 1024px) and (max-width: 1199px) {
    .portfolio__text {
        font-size: 110px;
    }
    .row_bottom {
        margin-top: 40vh !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .portfolio__text {
        font-size: 90px;
    }
    
    /* Tablet portrait mode - reduce gap between images and button */
    .row_bottom {
        margin-top: 20vh !important;
    }
    
    /* Adjust the end point for Work text on tablet */
    .portfolio__area {
        padding-bottom: 40vh;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio__text {
        font-size: 45px;
    }
}

.portfolio__area {
    position: relative;
    overflow: hidden;
}

.portfolio__item {
    padding-bottom: 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    scale: 0.5;
    opacity: 0;
}

.portfolio__item:hover .portfolio__info {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.portfolio__item .img-box {
    height: 100%;
}

.portfolio__item img {
    width: 100%;
}

.portfolio__btn {
    margin-top: 40px;
}

.portfolio__btn#btn_wrapper,
.portfolio__btn.btn_wrapper {
    margin: 0 auto;
}

.justify-content-center {
    justify-content: center;
}

.portfolio__list-1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 0px 30px;
    position: relative;
    margin-bottom: 0;
}
 
@media only screen and (max-width: 767px) {
    .row_bottom {
        margin-top: 30px;
    }

    .portfolio__list-1 {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .project_work .row_top .work_item:nth-child(even) .work_info {
        top: 0;
    }
  }


.owl-carousel{
  z-index: 0 !important;
}

@media screen and (max-width:768px) {
  .img-container img{
    width: 35px !important;
    height: auto !important;
  }
  .img-container img {
      max-width: 100%;
      height: auto;
  }
}

/************************/
.image > img{
  max-width: 100%;
  /* width: 100%; */
}
.progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #eee;
  z-index: 99999;
  pointer-events: none;
  /* so it won't intercept clicks */
}

/* the moving bar */
.progress-bar {
  height: 100%;
  width: 0%;
  background: #0d6efd;
  transition: width 0.12s linear;
  will-change: width;
}

.expertise .service-card {
  cursor: pointer;
  transform: scale(1);
  transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.expertise .service-card img {
  transform: scale(1);
  opacity: 0.95;
  transition: transform 1s cubic-bezier(0.25, 0.1, 0.25, 1), 
              opacity 0.5s ease-in-out;
  transform-origin: center center;
}

.expertise .service-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.expertise .service-card:hover img {
  transform: scale(1.1);
  opacity: 1;
}


.tabs_accordion-section .tab-content.accordion{
  overflow: auto;
  overflow-x: hidden;
}
.techstacknew .sidebar .nav-item:last-child{
  margin: 0px;
}
#myTab .nav-link::after {
    font-size: 25px;
}

.techstacknew .sidebar .nav-item button{
    border: 2px solid #1A2F56 !important;
}
.techstacknew .sidebar .nav-item button.nav-link.active{
    border: 2px solid var(--color-blue) !important;
}

.tabs_accordion-section main::-webkit-scrollbar{
    width: 17px;
}

.tabs_accordion-section main::-webkit-scrollbar-track {
    background: #1A2F56;
    border-radius: 10px;
}

.tabs_accordion-section main::-webkit-scrollbar-thumb {
    background: #3F81FB;
    border-radius: 10px;
    width: 11px;
    border: 3px solid #1A2F56;
}

.tabs_accordion-section main::-webkit-scrollbar-thumb:hover {
    background: #FFFFFF;
}
.techstacknew .tab-content img {
    max-height: 60px;
    object-fit: contain;
    max-width: 60px;
}

/* Cards Effects */


/* ===== Direction Hover Base Styles ===== */
.dir-hover {
    position: relative;
    overflow: hidden;
    perspective: 1100px;
    border-radius: 0px;
}

.dir-hover .normal {
    position: relative;
    z-index: 1;
    cursor: pointer;
    /* padding: 70px 25px; */
    height: 100%;
}


.dir-hover .info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    pointer-events: none;
    background: rgba(10, 39, 88, 1);
    transform: rotate3d(1, 0, 0, 90deg);
    z-index: 2;
    color: #fff;
}

.dir-hover .info img {
    filter: brightness(100) contrast(100);
}

.dir-hover .info h4{
    color: #ffffff;
}

/* Enter animations */
.in-top .info {
    animation: in-top 300ms ease forwards;
}

.in-right .info {
    animation: in-right 300ms ease forwards;
}

.in-bottom .info {
    animation: in-bottom 300ms ease forwards;
}

.in-left .info {
    animation: in-left 300ms ease forwards;
}

/* Exit animations */
.out-top .info {
    animation: out-top 300ms ease forwards;
}

.out-right .info {
    animation: out-right 300ms ease forwards;
}

.out-bottom .info {
    animation: out-bottom 300ms ease forwards;
}

.out-left .info {
    animation: out-left 300ms ease forwards;
}

/* ===== Your Existing Keyframes (unchanged) ===== */
@keyframes in-top {
    from {
        transform: rotate3d(-1, 0, 0, 90deg);
    }

    to {
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@keyframes in-right {
    from {
        transform: rotate3d(0, -1, 0, 90deg);
    }

    to {
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@keyframes in-bottom {
    from {
        transform: rotate3d(1, 0, 0, 90deg);
    }

    to {
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@keyframes in-left {
    from {
        transform: rotate3d(0, 1, 0, 90deg);
    }

    to {
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@keyframes out-top {
    from {
        transform: rotate3d(0, 0, 0, 0deg);
    }

    to {
        transform: rotate3d(-1, 0, 0, 104deg);
    }
}

@keyframes out-right {
    from {
        transform: rotate3d(0, 0, 0, 0deg);
    }

    to {
        transform: rotate3d(0, -1, 0, 104deg);
    }
}

@keyframes out-bottom {
    from {
        transform: rotate3d(0, 0, 0, 0deg);
    }

    to {
        transform: rotate3d(1, 0, 0, 104deg);
    }
}

@keyframes out-left {
    from {
        transform: rotate3d(0, 0, 0, 0deg);
    }

    to {
        transform: rotate3d(0, 1, 0, 104deg);
    }
}

/* Optional styling */
.feature {
    /* background: #fff; */
    /* padding: 25px; */
    border-radius: 0px;
    transition: 0.3s ease;
}

.in-top .info {
    transform-origin: 50% 0%;
    -webkit-animation: in-top 300ms ease 0ms 1 forwards;
    animation: in-top 300ms ease 0ms 1 forwards;
}

.in-right .info {
    transform-origin: 100% 0%;
    -webkit-animation: in-right 300ms ease 0ms 1 forwards;
    animation: in-right 300ms ease 0ms 1 forwards;
}

.in-bottom .info {
    transform-origin: 50% 100%;
    -webkit-animation: in-bottom 300ms ease 0ms 1 forwards;
    animation: in-bottom 300ms ease 0ms 1 forwards;
}

.in-left .info {
    transform-origin: 0% 0%;
    -webkit-animation: in-left 300ms ease 0ms 1 forwards;
    animation: in-left 300ms ease 0ms 1 forwards;
}

.out-top .info {
    transform-origin: 50% 0%;
    -webkit-animation: out-top 300ms ease 0ms 1 forwards;
    animation: out-top 300ms ease 0ms 1 forwards;
}

.out-right .info {
    transform-origin: 100% 50%;
    -webkit-animation: out-right 300ms ease 0ms 1 forwards;
    animation: out-right 300ms ease 0ms 1 forwards;
}

.out-bottom .info {
    transform-origin: 50% 100%;
    -webkit-animation: out-bottom 300ms ease 0ms 1 forwards;
    animation: out-bottom 300ms ease 0ms 1 forwards;
}

.out-left .info {
    transform-origin: 0% 0%;
    -webkit-animation: out-left 300ms ease 0ms 1 forwards;
    animation: out-left 300ms ease 0ms 1 forwards;
}

.icon-white, .icon-white img {
    filter: brightness(0) saturate(100%) invert(1) !important;
}

.tabs_accordion-section {
    overflow-y: auto;
    /* max-height: 420px; */
    padding: 0 12px;
}
.tabs_accordion-section img {
    max-height: 60px;
    object-fit: contain;
}

@media(min-width: 991px){
  .tabs_accordion-section {
      max-height: 420px;
    }
}

/*************AI Solution***************/

.Carousel-Section .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 15px;
  margin-right: 5px;
  margin-left: 5px;
  background-color: #BFE1FF;
  opacity: 1;
  border: none !important;
  border-radius: 10px;
}

.Carousel-Section .carousel-indicators .active {
  background: #061D48;
}

.Carousel-Section .carousel-indicators {
  position: absolute;
  right: 0;
  bottom: auto;
  left: auto;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  top: -30px;
}

.Carousel-Section .carousel-control-next,
.Carousel-Section .carousel-control-prev {
  display: none;
}

@media(max-width: 991px) {
  .Carousel-Section .carousel-indicators {
    left: 0;
    top: auto;
    bottom: 0;
  }

  .Carousel-Section #carouselExampleIndicators {
    padding-bottom: 40px;
  }

  .Carousel-Section .carousel-item .nft-stats-container-1 {
    text-align: center;
  }

  .Carousel-Section .carousel-item .nft-stats-container-1 img {
    max-width: 400px;
    margin: 0 auto;
  }
}

/*********/
.our-ai-models {
  padding: 80px;
}

.ai-models-title {
  position: relative;
}

.ai-models-title h1 {
  font-size: clamp(20px, 1.667vw, 32px);
  font-weight: font-semibold;
  color: #2F2B2B;
  font-weight: 700;
}

.ai-models-title h1 span {
  color: #E07B50;
}

.ai-models-title p {
  font-size: 16px;
  font-weight: font-regular;
  color: #2F2B2B;
}

.ai-model-bg {
  background: url("../techfyte/img/AI/ai-solutions/rounded-bg.png") no-repeat;
  height: 400px;
  position: relative;
  width: 100%;
  margin-top: 100px;
  background-size: 100% 360px;
  background-position: top center;
}

.ai-logo {
  position: relative;
  display: flex;
  width: 60px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ai-logo img {
  width: 60px;
  height: 60px;
}

.ai-logo .locator {
  position: relative;
  padding-top: 40px;
}

.ai-logo .locator .pin {
  height: 15px;
  width: 15px;
  background: rgba(210, 205, 186, 0.5);
  border-radius: 40px;
  filter: blur(3px);
}

.ai-logo .locator::before {
  position: absolute;
  content: "";
  height: 38px;
  left: 8px;
  top: 0px;
  border: 1px dashed rgba(188, 193, 200, 0.5);
}

.logo-main {
  width: 120px !important;
  top: -50px !important;
  height: 120px !important;
}

.logo-main img {
  width: 100% !important;
  height: 100% !important;
}

.logo-main::after {
  position: absolute;
  content: "";
  top: 102px;
  background: url(https://i.ibb.co/mCVnt7cz/shadow-1.png) center no-repeat;
  background-size: contain;
  height: 20px;
  width: 120px;
}

.ai-logo.logo-main p {
  margin: 30px 0 0 0;

}

.ai-logo {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: 30px;
}

.ai-logo p {
  color: #ffffff;
  white-space: nowrap;
}

.ai-logo.logo-1 {
  transform: translate(11vw, -20px);
}

.ai-logo.logo-2 {
  transform: translate(-11vw, -20px);
}

.ai-logo.logo-3 {
  transform: translate(26vw, -95px);
}

.ai-logo.logo-4 {
  transform: translate(-20.833vw, -110px);
}

.ai-logo.logo-5 {
  transform: translate(-26.042vw, 80px);
}

.ai-logo.logo-6 {
  width: clamp(60px, 5vw, 96px);
  height: 96px;
  transform: translate(-5.208vw, 123px);
}

.ai-logo.logo-7 {
  width: clamp(60px, 5vw, 96px);
  height: 96px;
  transform: translate(21vw, 106px);
}

.ai-logo.logo-8 {
  transform: translate(-16.927vw, 195px);
}

.ai-logo.logo-9 {
  transform: translate(11.458vw, 205px);
}

.ai-logo.logo-1 img,
.ai-logo.logo-2 img,
.ai-logo.logo-3 img,
.ai-logo.logo-4 img,
.ai-logo.logo-5 img,
.ai-logo.logo-6 img,
.ai-logo.logo-7 img,
.ai-logo.logo-8 img,
.ai-logo.logo-9 img {
  height: inherit;
  width: inherit;
}

/* Bouncing animation */
@keyframes bounce {

  0%,
  100% {
    top: 0;
    /* original position */
  }

  50% {
    top: 15px;
    /* bounce height */
  }
}

/* Apply to all logos */
.ai-logo img {
  animation: bounce 2s infinite ease-in-out;
  position: relative;
  z-index: 9;
}

/* Optional: stagger animation delays for variation */
.ai-logo.logo-main img {
  animation-delay: 0s;
}

.ai-logo.logo-1 img {
  animation-delay: 0.1s;
}

.ai-logo.logo-2 img {
  animation-delay: 0.2s;
}

.ai-logo.logo-3 img {
  animation-delay: 0.3s;
}

.ai-logo.logo-4 img {
  animation-delay: 0.4s;
}

.ai-logo.logo-5 img {
  animation-delay: 0.5s;
}

.ai-logo.logo-6 img {
  animation-delay: 0.6s;
}

.ai-logo.logo-7 img {
  animation-delay: 0.7s;
}

.ai-logo.logo-8 img {
  animation-delay: 0.8s;
}

.ai-logo.logo-9 img {
  animation-delay: 0.9s;
}

.ai-logo-mob {
  text-align: center;
  background-color: #F2F2F2;
  width: 162px;
  height: 155px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.ai-logo-mob img {
  max-width: 65px;
  max-height: 65px;
}

.ai-model-mob {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.ai-logo-mob p {
  font-weight: 900;
  color: #312D2D;
  font-size: 16px;
  margin-bottom: 0
}

@media (max-width: 1399.98px) {
  .ai-logo {
    margin-top: 20px;
    width: 40px;
  }

  .logo-main {
    width: 80px !important;
  }

  .logo-main {
    width: 80px !important;
  }

  .logo-main::after {
    top: 82px;
  }

  .our-ai-models {
    padding: 40px 0px;
  }
}
/*****/
.abs-img {
  position: absolute;
  left: 0;
  bottom: 0;
}

.abs-img img {
  max-width: 900px;
}

@media (max-width: 1440px) {
  .abs-img img {
    max-width: 700px;
  }
}

@media(min-width: 991px) and (max-width: 1199.98px) {
  .abs-img img {
    max-width: 500px;
  }
}
/*****/
 .grid-cols-1 {
   grid-template-columns: repeat(1, minmax(0, 1fr));
 }

 .grid-section .col-md-8,
 .grid-section .col-md-4 {
   flex: auto;
 }

 .p-6 {
   padding: 1.5rem;
 }

 .rounded-lg {
   border-radius: 0.75rem;
 }

 .grid-bg {
   position: relative;
  background: url("../techfyte/img/AI/ai-solutions/grid1.png") no-repeat;
   background-size: cover;
   min-height: 300px;
   height: 100%;
   width: 100%;
   transition: all;
 }
 /* .grid-bg p {
   color: #d5d5d5;
   font-size: calc(.5rem + .4vw);
   line-height: 1.5;
   opacity: 0;
   visibility: hidden;
   transition: all .3s;
   position: absolute;
   bottom: -12rem;
   left: 20px;
   height: 120px;
   margin: 0;
   right: 20px;
 }
.grid-bg:hover p {
  opacity: 1;
  visibility: visible;
  bottom: -7rem;
}
.grid-bg:hover::after {
  background: #030e23;
} */


 .grid-bg::after {
   content: "";
   background: linear-gradient(180deg, #030E23 50.61%, rgba(3, 14, 35, 0) 99.93%);
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   border-radius: 0.75rem;
 }

 .grid-bg-2 {
  background-image: url("../techfyte/img/AI/ai-solutions/grid2.png");
 }

 .grid-bg-3 {
  min-height: 250px;
  max-height: 250px;
  background-position: center;
  background-image: url("../techfyte/img/AI/ai-solutions/grid3.png");
 }
  .grid-bg-4 {
    background-image: url("../techfyte/img/AI/ai-solutions/grid4.png");
  }
  .grid-bg-5 {
    background-image: url("../techfyte/img/AI/ai-solutions/grid5.png");
  }
  .grid-bg-6 {
    background-image: url("../techfyte/img/AI/ai-solutions/grid6.png");
  }
  .grid-bg-7 {
    background-image: url("../techfyte/img/AI/ai-solutions/grid7.png");
  }

 .horizontal-gradient::after {
   /* background: linear-gradient(88.88deg, #030E23 48.68%, rgba(3, 14, 35, 0) 87.96%); */
   background: none;
 }

 @media (min-width: 1280px) {
   .grid-xl-cols-2 {
     grid-template-columns: repeat(2, minmax(0, 1fr));
   }

   .grid-bg-1,
   .grid-bg-2 {
     min-height: 500px;
   }

   .grid-bg {
     min-height: 380px;
   }
 }
/*************End AI Solution***********/

/*********Case Study************ */
.main-banner-portfolio {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 30px;
}

.portfolio_services-card .grid-column {
  height: 100%
}

@media (min-width:1280.99px) {
  .main-banner-portfolio {
    padding: 50px;
  }

  .portfolio-header {
    max-width: 80%
  }
}


.portfolio-service {
  left: 0;
  position: absolute;
  width: 100%;
  top: calc(100% - 118px/2)
}

.portfolio-row {
  border-radius: 20px;
  box-shadow: 0 3px 47px rgb(0 0 0 / 7%);
  padding: 20px;
  max-width: 90%;
  margin: auto;
  background-color: var(--white);
  width: 100%
}

.portfolio-column {
  border-right: 1px solid #b1b1b1
}

.portfolio-column:last-child {
  border: 0
}

.portfolio-text-col {
  max-width: 70%;
  width: 100%;
  margin: 0 auto;
  text-align: center
}

.portfolio-column h4 {
  font-size: 16px;
  font-weight: 500;
  color: #312d2d
}

.portfolio-column span {
  font-size: 20px;
  font-weight: 700
}

.portfolio-about {
  border-radius: 30px;
  padding: 30px 20px;
  padding: 30px 20px
}

.portfolio_services-card {
  padding: 20px;
}

.portfolio_services-card .grid-column i img {
  max-width: 60px;
  max-height: 60px
}


.portfolio_services-banner {
  height: auto
}

.grid-column {
  padding: 25px 16px;
  text-align: center
}

.grid-column i {
  margin-bottom: 16px
}

.grid-column h6 {
  font-family: "Urbanist", serif !important;
  font-size: 18px !important;
}


@media (max-width:1199.98px) {
  .portfolios-row {
    margin-top: 0;
    padding-top: 20px
  }

  .portfolio_services-card .grid-column i img {
    max-width: 40px;
    max-height: 40px
  }

  .portfolio-column h4 {
    font-size: 14px
  }
}

@media(max-width:767px) {
  .portfolio-service {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    right: 0
  }

  .portfolio-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px
  }
  .portfolio-column:nth-child(even) {
    border: 0
  }

  .tracking-column {
    padding: 10px
  }

  .portfolio-column span {
    font-size: 16px
  }

  .portfolio-text-col {
    max-width: 100%;
    padding: 10px
  }
}

@media (min-width:992px) {
  .portfolio_services-banner {
    height: 100%
  }

  .portfolio_services-banner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center top;
  }
}

.d-grid {
  display: grid
}

@media (min-width:992px) {
  .portfolio_services-card {
    padding: 40px;
  }
}


@media (min-width:992px) {
  .grid-column {
    padding: 35px 20px
  }
}

@media (max-width:767px) {
  .grid-column {
    padding: 20px 10px
  }
}

.features_article {
  border-radius: 30px
}

.portfolio-solun-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: column;
  gap: 1.25rem
}

.portfolio-solun-list ul li {
  padding-left: 30px;
  display: flex;
  flex-flow: column;
  gap: .5rem;
  position: relative
}

.portfolio-solun-list ul li::before {
  position: absolute;
  content: '';
  background: url("../techfyte/img/autobids/triangle.svg") no-repeat;
  background-position: left;
  background-size: contain;
  width: 15px;
  height: 15px;
  left: 0;
  top: 8px
}

.portfolio-solun-list ul li p {
  margin-bottom: 0
}

.portfolio-solun-list ul li h6 {
  font-weight: 600;
  margin-bottom: 0;
  color: #000
}

.portfolio_thumbnail img {
  max-width: 100%;
  height: auto;
}

/************************ */

.bg-light-blue {
  background-color: #3F81FB;
}

.bg-light-blue h2,
.bg-light-blue p {
  color: #ffffff;
}


.bg-autobid-blue {
  background-image: url("../techfyte/img/virtufy/bg_about.jpg");
  background-size: cover;
  text-align: center;
  padding: 50px 30px;
}
.bg-bookeep {
  background-image: url("../techfyte/img/bookeep/bg_bookeep.jpg");
}
.leading_inner {
  background-image: url("../techfyte/img/autobids/bg_dots.png");
  background-position: center;
  background-size: cover;
  padding: 20px;
}

.autobids_business_bg {
  background-image: url("../techfyte/img/autobids/black_bg.jpg");
  background-position: center;
  background-size: cover;
}
.bookeep_business_bg{
    background-image: url("../techfyte/img/bookeep/bookeep_foo.jpg");
    background-position: bottom;
    border-radius: 20px;
}

.bt-bg-gradient .business-banner::after {
  display: none;
}

button.btn-transparent img {
  max-width: 60px;
}

button.btn-transparent {
  background: transparent;
  display: flex;
  align-items: center;
  font-size: 18px;
  gap: 20px;
  color: #fff;
}

.center-image-portfolio img {
  filter: drop-shadow(11.1185px 14.4541px 36.6911px rgba(0, 0, 0, 0.27));
}

.business_value_article {
  padding: 20px;
}

@media(max-width:767px) {
  .bg-autobid-blue {
    padding: 20px;
  }
}

@media (min-width: 991px) {
  .business_value_article {
    padding: 45px;
  }
}

@media (min-width: 1200px) {
  .leading_inner {
    padding: 70px;
  }
}

/**************************** */

.challenge-row {
  display: grid;
  gap: 20px;
  counter-reset: section;
}

.chellenges-face {
  padding-left: 25px;
}

.challenges-col {
  border: 1px solid #dddddd;
  border-radius: 13px;
  padding: 20px 50px;
  position: relative;
  background: #fff;
}

.face-chellenge {
  position: absolute;
  left: -26px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border-radius: 1000px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dddddd;
  font-size: 16px;
  font-weight: 600;
  color: #3F81FB;
}

.face-chellenge::after {
  counter-increment: section;
  content: " 0" counter(section) " ";
}

/************ */
.portfolio_milestone_card {
  counter-reset: section;
}

.portfolio_milestone_card .milestone_card:not(:last-child) {
  margin-bottom: 12px;
}

.milestone_card {
  background: #f8f9fa;
  padding: 1.25rem 1.25rem 1.25rem 6rem;
  position: relative;
  transition: border-color .3s ease-in-out;
  border: 1px solid #fff0;
}

.milestone_card:hover,
.portfolio_milestone_card .milestone_card.active {
  border-color: #3F81FB;
}

.milestone_card::after {
  counter-increment: section;
  content: " 0" counter(section) " ";
  color: #3F81FB;
  font-size: 1.5rem;
  font-weight: 600;
  position: absolute;
  left: 40px;
  top: 20px;
  line-height: 1.3;
}

.milestone_card .milestone_col {
  display: flex;
  flex-flow: column;
  gap: .5rem;
}

.milestone_card .milestone_col span {
  color: #3F81FB;
  font-size: 1rem;
}

@media(max-width: 767px) {
  .milestone_card {
    padding: 1.25rem 1.25rem 1.25rem 4rem;
  }

  .milestone_card::after {
    left: 20px;
  }
  .challenges-col{
    padding: 20px 20px 20px 40px;
  }
}
/*************************** */

.technology-card {
  padding: 20px;
  color: #ffffff;
  display: flex;
  flex-flow: column;
  gap: 1rem;
  justify-content: center;
  background: radial-gradient(88.33% 88.33% at 36.98% 11.67%, #0A2658 0%, #04183E 100%);
}

.technology-card-icon {
  display: grid;
  grid-template-columns: auto;
  gap: 10px;
  border-top: 1px solid #ffffff1c;
  padding-top: 40px;
  margin-top: 40px;
}

.icon-stack {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-stack .icon-bg {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 50px;
  min-width: 46px;
  min-height: 46px;
  max-width: 46px;
  max-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-stack .icon-bg img {
  max-width: 24px;
}

.portfolio-technology-gap {
  height: 100%;
  row-gap: 20px;
}

.grid-card {
  border: 1px solid #ddd;
  background-color: #ffffff;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.grid-card ul {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(40%, 40%), 1fr));
  gap: 10px;
}

.grid-card ul li {
  line-height: 1.3;
  position: relative;
  padding-left: 25px;
  overflow-wrap: break-word;
}

.grid-card ul li:before {
  content: "";
  border-radius: 12px;
  background: linear-gradient(180deg, #3F81FB 0%, #222BDB 100%);
  box-shadow: 0 5.33333px 13.33333px 0 rgb(63 129 251 / .34);
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 5px;
}

.technology-card .logo_grp {
  display: flex;
  flex-flow: column;
  gap: 1rem;
}

@media (min-width: 1680px) {
  .technology-card {
    padding: 50px 48px;
  }
}

@media (min-width: 1440px) {
  .technology-card {
    padding: 35px 30px;
  }
}

@media (min-width: 1440px) {
  .technology-card-icon {
    gap: 30px;
  }
}

@media (min-width: 1200px) {
  .technology-card-icon {
    grid-template-columns: auto auto;
    gap: 15px;
  }
}

@media(max-width: 1200px) {
  .grid-card {
    padding: 20px;
  }
    .technology-card-icon {
      padding-top: 20px;
      margin-top: 20px;
    }
}

/************ */

.card-info-title {
  background: rgb(255 255 255 / .09);
  padding: 12px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: fit-content;
  font-size: 16px;
  text-align: center;
  color: #ffffff;
}

.features-grid-secn ul li {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  /* align-items: center; */
}

.features-grid-secn ul li em {
  min-width: 40px;
  margin-top: 3px;
}

.mw-80 {
  max-width: 80%;
}
.mw-600 {
  max-width: 600px;
}
/**************** */
.bg-img-features {
  background-image: url("../techfyte/img/virtufy/virtufy_service.jpg");
  background-size: cover;
}
/*********End Case Study************ */

/************Work**************/

 .page-template-page-designservices .project_work .work_item img {
   height: inherit;
   object-fit: cover;
 }

 .project_work {
   background: radial-gradient(circle, #0A2658, #04183E);
   color: white;
   width: 100%;
   padding: 40px 0;
   box-sizing: border-box;
   font-family: "Oswald", serif;
 }

 .top_row {
   overflow: hidden;
 }

 .project_work .work_heading h2 {
   text-align: center;
   text-transform: uppercase;
   font-size: 50px;
   padding: 30px;
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
 }

 .project_work .work_item img {
   width: 100%;
   height: auto;
   object-fit: cover;
 }

 .project_work .item_info {
   bottom: 0;
   padding: 20px;
   z-index: 999;
   max-width: inherit;
   display: flex;
   align-items: center;
   justify-content: space-between;
   width: 100%;
   background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
 }

 .project_work .item_info h3 {
   font-size: 34px;
   font-weight: 500;
 }

 .project_work .item_info a {
   color: #fff;
   gap: 10px;
   font-size: 18px;
   font-family: "Urbanist", serif;
   text-decoration: none;
 }

 .project_work .item_info a div.arrow_circle {
   height: 52px;
   width: 52px;
   border: 2px solid #fff;
 }

 .project_work .item_info a div.arrow_circle i {
   transform: rotate(-45deg);
   text-decoration: none;
 }

 .project_work .row_top .work_item:nth-child(even) .work_info {
   top: 50%;
 }

 .project_work .view_btn {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   margin: auto;
   margin-top: 100vh;
 }

 .portfolio__item {
   -webkit-transform: perspective(4000px) rotateX(90deg);
   transform: perspective(4000px) rotateX(90deg);
 }

 .portfolio__text {
   text-align: center;
   font-size: 150px;
   font-weight: 500;
   color: var(--white);
   padding: 00px 0 30px;
   opacity: 1;
   z-index: 1;
   position: relative;
 }

 @media only screen and (min-width: 992px) and (max-width: 1199px) {
   .portfolio__text {
     font-size: 110px;
   }
 }

 @media only screen and (min-width: 768px) and (max-width: 991px) {
   .portfolio__text {
     font-size: 90px;
   }
 }

 @media only screen and (max-width: 767px) {
   .portfolio__text {
     font-size: 45px;
     /* padding: 50px 0; */
   }
 }

 .portfolio__area {
   position: relative;
   overflow: hidden;
 }

 .portfolio__item {
   padding-bottom: 30px;
   position: fixed;
   top: 0;
   left: 0;
   z-index: 999;
   scale: 0.5;
   opacity: 0;
 }

 .portfolio__item:hover .portfolio__info {
   opacity: 1;
   visibility: visible;
   -webkit-transform: translateX(0);
   transform: translateX(0);
 }

 .portfolio__item .img-box {
   height: 100%;
 }

 .portfolio__item img {
   width: 100%;
 }

 .portfolio__btn {
   margin-top: 40px;
 }

 .portfolio__btn#btn_wrapper,
 .portfolio__btn.btn_wrapper {
   margin: 0 auto;
 }

 .row_bottom {
   margin-top: 50vh;
   position: relative;
   z-index: 10;
 }
 .justify-content-center {
   justify-content: center;
 }

 .portfolio__list-1 {
   display: -ms-grid;
   display: grid;
   -ms-grid-columns: 1fr 30px 1fr;
   grid-template-columns: 1fr 1fr;
   gap: 0px 30px;
   position: relative;
   margin-bottom: 0;
 }

 @media only screen and (max-width: 767px) {
   .row_bottom {
     margin-top: 30px;
   }

   .portfolio__list-1 {
     -ms-grid-columns: 1fr;
     grid-template-columns: 1fr;
     gap: 0px;
   }

   .project_work .row_top .work_item:nth-child(even) .work_info {
     top: 0;
   }
 }
/***********End Work************/


@media (max-width: 767.98px) {
  .progress-container{
    display: none;
  }
}

/**********/ 
.bg_gradient{
  position: relative;
}
.bg_gradient::after {
  background: #3F81FB;
  opacity: 0.7;
  filter: blur(248px);
  content: "";
  position: absolute;
  height: 650px;
  width: 650px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.bg_gradient img{
  position: relative;
  z-index: 1;
}
.custom-icon-size {
  background: #3F81FB;
  min-width: 65px;
  min-height: 65px;
  max-height: 65px;
  max-width: 65px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-icon-size img {
  max-width: 40px !important;
  max-height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
}
@media(max-width: 767.98px) {
  .custom-icon-size {
      min-width: 45px;
      min-height: 45px;
      max-height: 45px;
      max-width: 45px;
    }
    .bg_gradient::after{
      filter: blur(100px);
      height: 300px;
      width: 300px;
    }
    .custom-icon-size img {
      max-width: 30px !important;
      max-height: 30px !important;
      min-width: 30px !important;
      min-height: 30px !important;
    }
}
/****************FORM/MODAL CSS*********************/
  #projectModal {
    z-index: 9999999;
  }

  :has(#projectModal) .modal-backdrop {
    z-index: 999999;
  }
  .error-message,
  .error {
    font-size: 14px !important;
  }

  .contact-form form input,
  #projectModal input,
  #projectModal textarea {
    color: #000 !important;
  }
  #projectModal .modal-content {
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  }

  #projectModal input,
  #projectModal textarea {
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 10px;
    font-family: "Urbanist", serif;
  }

  #projectModal .btn-primary {
    background: #3f81fb;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.3s;
  }

  #projectModal .btn-primary:hover {
    background: #2d6be3;
  }
    #projectModal input::placeholder,
    #projectModal textarea::placeholder {
      color: #8c8c8c;
    }
  
    #projectModal .modal-header,
    #projectModal .modal-body {
      padding: 10px 25px !important;
    }
  
    #projectModal .contact-form .iti__selected-flag {
      padding: 5px 10px !important;
    }
  
    .job-card .p1-regular br {
      display: block !important;
    }
    .career-jobs .career-jobs-container {
      margin-top: 34px;
    }

    .max-w-content {
      max-width: 600px;
      margin: 0 auto;
    }
    .thanks-img {
      max-width: 420px;
      margin: 0 auto;
    }

    #projectModal #loader {
      display: none !important;
      align-items: center !important;
      justify-content: center !important;
      position: absolute;
      width: 100%;
      height: 100%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(0, 0, 0, 0.5);
      z-index: 9;
    }
  
    #projectModal #loader.active {
      display: flex !important;
    }
    #loader {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      margin-bottom: 20px;
    }
  
    #responseMessage {
      font-size: 18px;
      text-align: center;
    }
  
    #responseMessage.success {
      color: green;
    }
  
    #responseMessage.error {
      color: red;
    }
  
    .thanks-btn-close {
      margin-left: auto;
      width: 30px;
      text-align: end;
      margin-top: -20px;
      display: block;
      margin-right: 20px;
    }
    .custom-blue-button .custom-bg-primary-blue {
      padding: 10px 30px;
      gap: 20px;
      width: auto !important;
      max-width: initial !important;
    }
    @supports (-webkit-touch-callout: none) {
      .modal-dialog {
        transform: none !important;
        /* Prevent caret misalignment in modals */
      }
  
      #projectModal input,
      #projectModal textarea {
        font-size: 16px !important;
        /* Prevent iOS zoom-in */
        line-height: 1.2 !important;
      }
  
      #projectModal .form-control {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
      }
    }
    /**********End FORM/MODAL CSS*********************/

    .platform-card {
      background-color: #3F81FB1A;
      border-radius: 8px;
      height: 100%;
    }

    .card-header {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .logo-row {
      --min-chip-width: 200px;
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(auto-fill, minmax(min(var(--min-chip-width), 100%), 1fr));
    }

    .logo-chip {
      background: #fdfdfd;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 12px 12px 12px 16px;
    }

    .logo-chip img {
      width: 56px;
      height: 56px;
      object-fit: contain;
      border-radius: 8px;
    }

    .logo-chip span {
      font-weight: 600;
      color: #3a3a3a;
      font-size: 16px;
    }

    /****************/
    .step_item{
      counter-increment: step-counter;
      padding: 30px 30px 30px 120px;
      position: relative;
      transition: all 0.3s ease-in-out;
      border-radius: 10px;
    }
    .step_item:hover{
      background: #3F81FB;
      color: #fff;
    }
    .step_item:hover > h4::after {
      background: #fff;
      color: #3F81FB;
    }
    .step_item:hover h4{
        color: #fff;
    }
    .step_item > h4::after {
        content: "0" counter(step-counter);
          font-size: 40px;
          font-weight: 700;
          color: #fff;
          position: absolute;
          left: 20px;
          top: 30px;
          z-index: 9;
          height: 70px;
          width: 70px;
          background: #3F81FB;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 8px;
    }

.workflow_img {
  padding: 20px;
  background: rgba(63, 129, 251, 0.1);
  border-radius: 8px;
}
.workflow_img img {
  width: 100%;
  height: auto;
}
@media(max-width: 991.98px) {
  .step_item {
    padding: 20px 20px 20px 90px;
  }

  .step_item>h4::after {
    font-size: 30px;
    left: 20px;
    top: 24px;
    height: 54px;
    width: 54px;
  }
}
@media(max-width: 767.98px) {
    .step_item>h4::after {
      font-size: 20px;
      height: 46px;
      width: 46px;
      top: 20px;
      left: 0;
    }
    .step_item {
      padding: 15px 15px 15px 56px;
    }
}
/****************/
.testimonial-reel .slick-slide {
  margin: 0px 20px;
}

.testimonial-reel .slick-list.draggable {
  padding: 0 !important;
}

.testimonial-reel .slick-slide img {
  width: 100%;
}

.testimonial-reel .slick-slide {
  transition: all ease-in-out .3s;
  opacity: .5;
}

.testimonial-reel .slick-current {
  opacity: 1;
}

.testimonial-reel .box {
  position: relative;
  text-align: center;
}

.testimonial-reel .box figure {
  height: 100px;
  text-align: center;
  width: 100px;
  margin: 0 auto;
}

.testimonial-reel .slick-slide.slick-current.slick-active .test-component {
  opacity: 1;
  padding: 0;
  text-align: center;
  margin: 0 auto;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0px);
}

.testimonial-reel .box .test-title {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 15px;
}

.testimonial-reel .box .test-content {
  text-align: center;
  border-top: 2px solid rgba(31, 36, 42, 0.06);
  position: relative;
  padding-top: 20px;
}
.testimonial-reel .slick-prev::before,.testimonial-reel .slick-next::before {
  content: "";
  background-image: url(../techfyte/img/arr-left.svg);
  height: 40px;
  width: 40px;
  background-size: cover;
  display: inline-block;
}
.testimonial-reel .slick-next::before{
  background-image: url(../techfyte/img/arr-right.svg);
}
.testimonial-reel .slick-prev,
.testimonial-reel .slick-next {
  height: 40px;
  width: 40px;
  opacity: 1;
  z-index: 9;
}
.testimonial-reel {
  padding-bottom: 50px;
}
@media(max-width:991px) {
  .testimonial-reel {
    padding-bottom: 30px;
  }
}
@media(max-width: 767.98px) {

.testimonial-reel .slick-prev,
.testimonial-reel .slick-next{
display: none !important;
}
.testimonial-reel .slick-slide{
  margin: 0 5px;
}

.testimonial-reel .box .test-title{
  margin-top: 1rem;
}
.testimonial-reel .box .test-content{
  padding-top: 12px;
}
}
/****************************/ 

.choose_new_item{
  position: relative;
  padding-left: 54px;
  border-bottom: 1px solid rgba(140, 140, 140, 0.178);
}
.choose_new_item h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  background-image: url(../techfyte/img/AI/generative-ai/check.svg);
  height: 40px;
  width: 40px;
  background-size: cover;
}

.bg-primary{
  background: rgba(63, 129, 251, 1);
  color: #fff !important;
  line-height: 1.1;
  display: inline-block;
}
.techstacknew .full-width > img{
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 100% !important;
}
.safety-list{
display: flex;
gap: 16px;
flex-direction: column;
}
.safety-list li{
padding-left: 30px;
position: relative;
}
.safety-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  background-image: url(../techfyte/img/AI/generative-ai/polygon.svg);
  height: 16px;
  width: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}
.safety_slider_inner .slick-list.draggable{
  padding: 0 !important; 
}
.safety_slider_inner .slick-slide {
  padding-right: 30px;
  border-right: 1px solid #eeeeee;
  margin-right: 30px;
}
@media(max-width: 767.98px) {
  .choose_new_item {
    padding-left: 40px;
  }
.safety_slider_inner .slick-slide{
  padding: 0 !important;
  margin: 0 !important;
  border: none;
}
  .choose_new_item h4::before {
    height: 30px;
    width: 30px;
    background-size: 30px;
    top: 0;
  }
}

/************************/
.features-grid-box-secn ul {
  display: flex;
  flex-direction: column;
}
.features-grid-box-secn ul li {
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
}
.features-grid-box-secn ul li:last-child{
  border: none;
}
.features-grid-box-secn {
  background:#f8f9fa;
  border-radius: 10px;
  height: 100%;
}
.features-grid-box-secn ul.inner-list {
  padding: 0 0 0 20px;
}

.features-grid-box-secn ul.inner-list li {
  border: none;
  padding: 0;
  list-style: disc;
  font-size: 85%;
}
.features-grid-box-secn>h4 {
  padding: 12px 20px;
  background: #04183f;
  border-radius: 10px 10px 0 0;
  color: #fff;
}
.features-grid-box-secn .feature-list_content::after {
  content: "";
  position: absolute;
  left: 0;
  background-image: url(../techfyte/img/AI/conversational-ai/cfc-icon1.svg);
  height: 12px;
  width: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 8px;
}

.features-grid-box-secn .feature-list_content {
  position: relative;
  padding-left: 24px;
}
/******************/
.hover-disable:hover {
  background-color: var(--white) !important;
  transform: inherit !important;
}

.hover-disable:hover .icon {
  filter: invert(0) !important;
}

.hover-disable:hover h4 {
  color: #000 !important;
}

.hover-disable:hover p {
  color: inherit !important;
}

.single-line-card img {
  width: clamp(48px, 3.385vw, 65px);
}

.single-row-card .card {
  border: 0;
  border-bottom: 1px solid #f0f0f080;
}

.bdr-top {
  border-top: 1px solid #f0f0f080 !important;
}
/************************/ 
.sector_inn img {
  min-width: 40px;
  max-width: 40px;
  max-height: 40px;
  min-height: 40px;
}

.sector_inn {
  background: #1A2F56;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  width: 100%;
  color: #fff;
}

/**************/
.stacked-cards-oneline {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.stacked-cards-oneline .card{
    gap: 20px;
    padding: 20px 10px;
    height: 100%;
    min-height: 175px;
    min-width: 180px;
    max-width: 180px;
    text-align: center;
}

h4.list-head {
  font-size: clamp(16px, 2.083vw, 20px) !important;
  font-family: "Urbanist", serif !important;
}

#applicationForm input#phone_a {
  padding-left: 98px !important;
}
@media(max-width: 767.98px){
  #applicationForm input#phone_a {
      padding-left: 90px !important;
    }
}
.safety_outer .slick-arrow {
  display: none !important;
}