/* Tech Item Starts home2*/
.tech-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  padding: 2px 25px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tech-partner-set {
  display: flex;
}

.grid-partner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.tech-item:hover {
  transform: scale(1.05);
  background: #f0f0f0;
}

.inner-tech {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tech-partner-set {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
}

/* Tech Item Ends home2*/

/* .navbar {
  background-color: white;
} */
/* new home hero index2 */
.slider-container {
  position: relative;
  width: 100%;
  height: 92vh;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  text-align: left;
  padding-left: 10%;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  position: absolute;
  top: 25%;
  left: 10%;
  color: #fff;
  padding-right: 10px;
}

.slide h1 {
  font-size: 48px;
  margin-bottom: 10px;
  color: #fff;
}

.slide p {
  font-size: 20px;
  max-width: 60%;
  color: #fff;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #209ff1;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 30px;
}

.progress-container {
  position: absolute;
  bottom: 10%;
  left: 10%;
  display: flex;
  gap: 20px;
  width: 80%;
}

.progress-item {
  text-align: center;
  flex: 1;
  color: #fff;
}

.progress-label {
  margin-top: 10px;
  font-size: 12px;
  text-align: left;
  color: #eeee;
  line-height: 1.25;
}

.progress-label2 {
  margin-top: 10px;
  font-size: 14px;
  text-align: left;
  color: #fff;
  cursor: pointer;
}

.progress-bar {
  width: 90%;
  height: 5px;
  background: rgb(169 169 169 / 20%);
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
}

.progress-fill {
  width: 0;
  height: 100%;
  background: #209ff1;
  transition: width 5s linear;
}

/* Css for Hero index2*/
@media (min-width: 1366px) and (max-width: 1920px) {
  .progress-container {
    top: 85% !important;
  }
}

@media (min-width: 800px) and (max-width: 1024px) {
  .progress-container {
    top: 85% !important;
  }

  .slider-container {
    position: relative;
    width: 100%;
  }
}

@media (min-width: 300px) and (max-width: 780px) {
  .progress-container {
    display: none;
  }

  .progress-label2 {
    display: none;
  }

  .slider-container {
    height: 85vh !important;
  }
}

@media only screen and (max-width: 500px) {
  .slider-container {
    position: relative;
    width: 100%;
    height: 55vh !important;
    overflow: hidden;
  }

  .progress-container {
    top: 60% !important;
  }

  .slide p {
    font-size: 16px;
    max-width: 90%;
  }

  .slide h1 {
    font-size: 28px;
  }
}

/* Expertise Section Css Start home2 */

.services-section {
  padding: 80px 100px;
  display: flex;
  justify-content: center;
}

.flex-expertise {
  display: flex;
}

.services-left {
  flex: 1;
  position: relative;
  padding-right: 50px;
}

.services-title {
  font-size: 14px;
  text-transform: uppercase;
  color: gray;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.services-heading {
  font-size: 54px;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
  position: relative;
  z-index: 2;
}

.highlight {
  background: linear-gradient(to right, #34a8f2, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  background-attachment: fixed;
}

.background-logo {
  z-index: 1;
  position: absolute;
  top: 25%;
  left: 40%;
  width: 350px;
  height: 100px;
  background: url("../img/cust-img/guruGroup-logo-new.svg") no-repeat center;
  background-size: contain;
  opacity: 0.2;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.vertical-divider {
  width: 1px;
  background: #ddd;
}

.services-right {
  flex: 1;
}

.service-box1 {
  padding: 25px 20px;
  animation-delay: 0.2s;
}

.service-box {
  border-top: 1px solid #ddd;
  padding: 25px 20px;
  animation-delay: 0.4s;
}

.service-box h3,
.service-box1 h3 {
  font-size: 20px;
  font-weight: 400;
  color: #4b505e;
  margin-bottom: 8px;
}

.service-box p,
.service-box1 p {
  font-size: 16px;
  color: #555;
  margin-bottom: 12px;
}

.learn-more {
  font-size: 14px;
  color: #34a8f2;
  text-decoration: none;
  font-weight: 400;
}

.learn-more:hover {
  text-decoration: underline;
  color: #34a8f2;
}

@media only screen and (max-width: 768px) {
  .flex-expertise {
    flex-direction: column;
  }

  .services-heading {
    font-size: 24px;
  }

  .services-left {
    padding-right: 0px;
  }

  .services-section {
    padding: 40px 10px;
  }

  .service-box h3,
  .service-box1 h3 {
    font-size: 18px;
  }

  .service-box p,
  .service-box1 p {
    font-size: 14px;
  }
}

/* css for home2 maps */
.map-pos-p {
  left: -45%;
  top: -110% !important;
}

/* css for new home2 CTA */
.background-cta {
  background: #181857;
}

.text-white-cta {
  color: white !important;
}

/* CSS for dive in Expertise Section home2 */
.service_img img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 0.4s ease-in-out;
  opacity: 1;
}

.service_content {
  position: relative;
  z-index: 0;
  transition: 0.4s ease-in-out;
  padding: 20px;
}

.service_item:hover .service_img img {
  opacity: 0.1;
  transform: scale(1.1);
}

.service_item:hover .service_content {
  color: #fff;
}

.service_carousel .owl-item .service_item:hover {
  background: rgba(128, 128, 128, 0.5);
}

/* new home2 page css  onshore*/
.bg-color-temp {
  background-image: unset;
  background-color: whitesmoke;
}

.custom-product-size {
  width: 14% !important;
}

.custom-image-width {
  max-width: 95%;
}

.onshore-icon {
  width: 60px;
  margin-bottom: 35px;
}

/* new home2 section new dive into expert */

.swiper-slider-custom {
  background-image: linear-gradient(120deg, #787878 0%, #202020 100%);
}

.card-wrapper {
  max-width: 1100px;
  margin: 0 60px 35px;
  padding: 40px 10px;
  overflow: hidden;
}

.ul-custom-pad {
  padding-left: 0px !important;
}

.card-list .card-item {
  list-style: none;
}

.card-list .card-item .card-link {
  user-select: none;
  display: block;
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: 0.2s ease;
  height: 370px;
}

.card-list .card-item .card-link:active {
  cursor: grabbing;
}

.card-list .card-item .card-link:hover {
  border-color: #34a8f2;
}

.card-list .card-link .card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
}

.card-list .card-link .badge {
  color: #34a8f2;
  margin: 16px 0 18px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  padding: 0 0;
  white-space: normal;
  text-align: left;
}

.card-list .card-link .card-title {
  font-size: 14px;
  color: #000;
  font-weight: 100;
}

.card-list .card-link .card-button {
  height: 35px;
  width: 35px;
  color: #34a8f2;
  border-radius: 50%;
  margin: 30px 0 5px;
  background: none;
  cursor: pointer;
  transform: rotate(-45deg);
  border: 2px solid #34a8f2;
  transition: 0.4s ease;
}

.card-list .card-link:hover .card-button {
  color: #fff;
  background: #34a8f2;
}

.card-wrapper .swiper-pagination-bullet {
  height: 13px;
  width: 13px;
  opacity: 0.5;
  background: #34a8f2;
}

.card-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

.card-wrapper .swiper-slide-button {
  color: #34a8f2;
  margin-top: 0px;
}

@media screen and (max-width: 768px) {
  .card-wrapper {
    margin: 0 10px 25px;
  }

  .card-wrapper .swiper-slide-button {
    display: none;
  }
}

@media screen and (max-width: 550px) {
  .card-list .card-item .card-link {
    height: unset;
  }
}

/* css for new home2 expertise section 1 */

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-slide {
  height: auto !important;
}

.vertical-ticker {
  height: 60vh;
  display: flex;
  column-gap: 2.85vw;
  overflow: hidden;
}

@media screen and (max-width: 767.9px) {
  .vertical-ticker {
    margin: 0 -20px;
    height: 100%;
    flex-direction: column;
    row-gap: 15px;
  }
}

.vertical-ticker__slide-content {
  position: relative;
  width: 100%;
  aspect-ratio: 300 / 205;
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(50px);
}

@media screen and (max-width: 767.9px) {
  .vertical-ticker__slide-content {
    width: 150px;
  }
}

.vertical-ticker__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease-out;
}

.vertical-ticker__slide img:last-child {
  position: absolute;
  inset: 0;
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .vertical-ticker__slide:hover img:last-child {
    opacity: 1;
  }
}

@media screen and (max-width: 767.9px) {
  .vertical-ticker__slide img {
    width: 80%;
    height: 80%;
  }
}

/* Custom CSS for partners logo Slider Starts home2*/
@keyframes slides {
  from {
    transform: translateX(0);
  }

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

.logos {
  overflow: hidden;
  padding: 30px 0px;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  content: "";
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left,
      rgba(255, 255, 255, 0),
      rgb(255, 255, 255));
}

.logos:after {
  right: 0;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0),
      rgb(255, 255, 255));
}

.logo_items {
  display: inline-block;
  animation: 100s slides infinite linear;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img {
  height: 100px;
  margin-right: 50px;
  max-width: fit-content;
}

@media (max-width: 600px) {

  .logos:before,
  .logos:after {
    width: 50px;
  }
}

@media (max-width: 660px) {
  .cstm-bd-font2 {
    font-size: 18px !important;
  }

  .section-title .sub-title {
    align-items: flex-start;
  }
}

/* Custom CSS for partners logo Slider Ends home2*/

/* Mega menu new */
.mega-menu-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: #fff;
  border-bottom: 1px solid #ffffff85;
  /* box-shadow: 0 2px 10px rgba(0,0,0,.05); */
}

.mega-menu-area .navbar {
  overflow: visible;
}

.mega-menu-area .dropdown-mega {
  position: static;
}

.mega-menu-area .dropdown-mega .dropdown-menu.mega-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 85%;
  width: 100%;
  min-height: 200px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 1030;
}

@media (min-width: 992px) {
  .mega-menu-area .dropdown-mega:hover>.dropdown-menu.mega-menu {
    display: block;
  }
}

@media (min-width: 1200px) and (max-width: 1300px) {
  .mega-menu-area .fluid-padding {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 991.98px) {
  .mega-menu-area .dropdown-mega .dropdown-menu.mega-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    height: unset;
  }

  .mega-menu-area .dropdown-mega.show>.dropdown-menu.mega-menu {
    display: block;
  }

  .mega-menu-area .dropdown-mega .dropdown-menu.mega-menu {
    min-height: unset;
  }
}

.mega-menu-area .mega-h {
  font-weight: 700;
  font-size: 17px;
  color: #34a8f2;
  padding-top: 10px;
  padding-bottom: 7px;
}

.mega-menu-area .mega-link,
.mega-menu-area .mega-sublink {
  display: block;
  padding: 5px 0;
  text-decoration: none;
  color: #051441;
  line-height: 1.3;
  transition: color 0.2s ease;
  font-size: 15px;
}

.mega-menu-area .mega-link:hover,
.mega-menu-area .mega-sublink:hover {
  color: #209ff1;
}

.mega-menu-area .mega-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #333;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mega-menu-area .mega-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.mega-menu-area .mega-card span {
  font-weight: 600;
}

.mega-menu-area .mega-card:hover {
  background: #fafafa;
  transform: translateY(-1px);
}

.gradient-bg .nav-link.active,
.show>.nav-link {
  background: unset !important;
}

.slide-content .btn:hover {
  background-color: #209ff1 !important;
}

@media (max-width: 991px) {
  .small-w-h {
    max-width: 210px !important;
    max-height: 125px !important;
  }
}

@media (max-width: 575px) {
  .padding-top-mobile-40 {
    padding-top: 40px !important;
  }
}

.about-counter .row.gy-4 .col-lg-3.col-sm-6 {
  justify-items: center;
}

.z-n1 {
  z-index: -1 !important;
}

.z-1 {
  z-index: 1 !important;
}

.max-width-swip {
  max-width: 460px !important;
  max-height: 400px !important;
}

.justify-item-centers {
  justify-items: center;
}


.heading-aus {
    font-size: 16px;
    font-weight: 600;
    color: #677294;
}