* {
  font-family: "poppins", sans-serif;
}
body {
  background-color: #1a1a1a;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
.banner-section {
  background-image: url("./../../home-images/banner-digitalwin1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 99%;
}

.video-robot {
  position: absolute;
  margin-top: 1%;
  left: 10%;
  transform: translate(0%, -30%);
  width: 10%;
  height: 50%;
  object-fit: cover;
  z-index: -1;
}
.video {
  object-fit: cover;
  z-index: -1;
}
@media (min-width: 1200px) {
  .video-robot {
    width: 14%;
    /* left: 10%; */
    bottom: 5px; /* Adjust vertical alignment */
  }
}

.explore-button {
  display: flex;
  justify-content: center; /* Horizontally center the content */
  align-items: center; /* Vertically center if needed */
}
.explore {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  margin-left: 10px;
  color: #080808;
  font-size: 16px;
  background-color: white;
  border-radius: 30px;
  border: none;
  margin-top: 20px;
}

.banner-section {
  background-image: url("./../../images/banner-digitalwin1.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
}
.explore {
  transition: transform 0.4s ease-in-out;
  margin-right: 10px; /* Space between text and arrow */
  font-size: 16px;
  font-weight: 400;
  font-family: "poppins", sans-serif;
}

.explore i {
  margin-left: 5px; /* Space between text and icon */
  transition: transform 0.4s ease-in-out; /* Smooth transition for arrow */
}

.explore:hover {
  padding: 8px 18px !important; /* Move text to the left */
}

.explore:hover i {
  transform: translateX(15px); /* Move arrow icon to the right */
}

.first-section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: auto;
  text-align: center;
}
/* Responsive Styles */
@media only screen and (max-width: 768px) {
  .first-section {
    width: 70vw; /* Adjusts to smaller screen */
    height: 40vh;
  }

  .banner-section {
    height: 60vh;
  }
}
@media only screen and (min-width: 768px) and (max-width: 868px) {
}

@media only screen and (max-width: 480px) {
  .first-section {
    top: 40% !important;
    width: 80vw;
    height: auto;
  }
  .video-robot {
    display: none;
  }
  #type-css {
    width: 80vw !important; /* Change width to 40vw */
    height: 25px !important;
  }
  .banner-section {
    height: 60vh;
  }

  /* Adjust h1, h2, and #type-js font sizes for small screens */
  .first-section h1 {
    font-size: 20px !important;
  }

  .first-section h2 {
    font-size: 16px !important;
  }

  #type-js {
    font-size: 18px !important;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .first-section {
    width: 60vw;
    height: auto;
  }

  .banner-section {
    height: 100vh;
  }
}

.first-section h1 {
  color: #ffffff;
  margin-bottom: 30px;
  background: linear-gradient(to right, #4d4d4d 0%, #ffffff 50%, #4d4d4d 100%);
  background-size: 200% auto;
  background-position: 0 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
  animation-fill-mode: forwards;
  font-weight: bold;
  font-size: 48px;
  text-decoration: none;
  white-space: nowrap;
  font-family: "Orbitron", sans-serif;
}

@keyframes shine {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.first-section h2 {
  display: block;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 600;
  color: white;
  font-family: "Orbitron", sans-serif;
}

#type-css {
  color: white !important;
  width: 40vw; /* Change width to 40vw */
  height: 50px;
  background-color: #d31a42;
  display: flex;
  justify-content: center; /* Centers the content horizontally */
  align-items: center; /* Centers the content vertically */
  overflow: hidden;
  margin: 0 auto;
}

#type-js {
  color: white;
  display: inline-block;
  line-height: 1;
  font-size: 32px;
  font-weight: 600;
  border-right: 3px solid #ffffff;
  animation: cursor 1s step-end infinite;
  white-space: nowrap;
}

@keyframes cursor {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #ffffff;
  }
}
.logo {
  width: 60%;
  height: auto;
}

.support-button6:hover .text {
  transform: translateX(-20px) !important; /* Move text to the left */
}

.support-button6:hover .arrow-container {
  transform: translateX(100px) !important;
}

/* for extra button */
.support-button6 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.4s ease-in-out;
}
.support-button6:hover {
  background-color: #ffffff !important;
}
.support-button6 .text {
  transition: transform 0.4s ease-in-out;
  margin-right: 22px;
}

.support-button6 .arrow-container {
  display: inline-block;
  transition: transform 0.4s ease-in-out;
}

.support-button6:hover .text {
  transform: translateX(-8px); /* Move text to the left */
}

.support-button6:hover .arrow-container {
  transform: translateX(10px); /* Move arrow to the right */
}

.extra-support-button6 {
  display: none; /* Initially hide extra support button */
}

/* Mobile Styles */
@media (max-width: 948px) {
  .support-button6 {
    display: none; /* Initially hide the support button */
  }
}
/*  */

.service-btn:hover {
  background: linear-gradient(to right, #d31a42, #c5529e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/*  */

@media only screen and (min-width: 1420px) and (max-width: 1920px) {
  .icon {
    position: absolute;
    bottom: -0.375rem;
    right: 8.375rem !important;
    width: 6rem;
    height: 6rem;
    background: var(--clr);
    border-top-left-radius: 50%;
  }
  .brand-content p {
    font-size: 20px !important;
  }
  nav > ul > li.mega-drop .mega-drop-inner ul h3,
  .unique-dropdown-link {
    color: white;
    font-size: 18px !important;
    padding: 0;
  }
  .unique-details p {
    font-size: 18px !important;
  }
  .brand-content-container span {
    font-size: 18px !important;
  }
  .navbar-item6 a {
    font-size: 20px !important;
  }
  .unique-carousel-item .unique-visit-website {
    font-size: 24px !important;
  }
  .form h1 {
    font-size: 26px !important;
  }
  .carousel-section h1 {
    color: #fff;
    font-size: 26px !important;
  }
  .carousel-section h3 {
    font-size: 34px !important;
  }
  .form-container {
    width: 90%;
  }
  .value-heading {
    font-size: 22px !important;
  }
  .unique-carousel-item {
    height: auto !important;
  }

  .mega-drop-inner ul li {
    color: white;
    font-size: 16px;
  }

  .support-button6:hover .arrow-container {
    transform: translateX(8px); /* Move arrow to the right */
  }
  .unique-carousel-section-large h1 {
    font-size: 26px !important;
  }
  .unique-carousel-section-large h3 {
    font-size: 40px !important;
  }
  nav > ul > li.mega-drop .mega-drop-inner ul h3,
  .unique-dropdown-link {
    font-size: 18px;
  }
  nav > ul > li > a {
    font-size: 22px;
  }

  .support-button6:hover .text {
    transform: translateX(-28px) !important; /* Move text to the left */
  }

  .quotes {
    font-size: 16px;
  }
  .value-heading p {
    font-size: 20px !important;
  }
  .business-sub-card h2 {
    font-size: 26px !important;
  }
  .business-sub-card p {
    font-size: 22px !important;
  }
  .operate-sub-card h3 {
    font-size: 1.5rem !important;
  }
  .operate-sub-card p {
    font-size: 1.2rem !important;
  }
  .team-section h2 {
    font-size: 22px !important;
  }
  .team-member h3 {
    font-size: 20px !important;
  }
  .team-member p {
    font-size: 16px !important;
  }
  .sidebar a {
    font-size: 20px !important;
    width: 230px !important;
  }
  .main-contents {
    margin-top: 3% !important;
  }
  .teams h1 {
    font-size: 36px !important;
  }
  .image-container {
    height: 80vh !important;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .content-container .description {
    text-align: left;
    font-size: 1.4rem;
  }
  .content-container .title {
    text-align: left;
    font-size: 2.5rem;
  }

  .laptop-service-as-quote {
    margin-top: 0px !important;
  }

  .laptop-service-as-screen {
    position: absolute;
    width: 44.7rem !important;
    height: 28.8rem !important;
  }
  .laptop-service-as-carousel-container {
    top: -140% !important;
  }
  .image-container img {
    height: 70vh !important;
    margin: 60px !important;
    width: 30vw !important;
    position: relative;
  }

  nav > ul > li > a {
    font-size: 24px !important;
  }
  .contact-button button {
    font-size: 22px !important;
  }
}

@media (max-width: 599px) {
  .details p {
    padding: 10px !important;
  }
}

i.fa-solid.fa-arrow-right {
  font-size: 30px;
}

@media (max-width: 599px) {
  i.fa-solid.fa-arrow-right {
    font-size: 24px !important;
  }
  .service-toggle {
    display: none !important;
  }

  .carousel-section h3 {
    margin-left: 20px;
  }
  .laptop-service-as {
    height: 50vh !important;
  }
  .laptop-service-as-screen {
    position: absolute;
    width: 17.6rem !important;
    height: 11.5rem !important;
    top: 45.8% !important;
    left: 46.3% !important;
    transform: translate(-50%, -50%);
    border-top-left-radius: 5px !important;
    border-top-right-radius: 5px !important;
    border-bottom-left-radius: 2px !important;
    border-bottom-right-radius: 2px !important;
  }
  .laptop-service-as-container {
    height: 55vh !important;
  }
  .laptop-service-as-content {
    display: none !important;
  }
}

.brand-section {
  height: auto;
  display: flex;
  width: 94%;
  margin-left: 40px;
  margin-right: 40px;
  padding: 20px;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  perspective: 1px; /* This is the key for parallax */
  transform: translateY(50px); /* Move section down initially */
  opacity: 0; /* Initially invisible */
  transition: transform 0.6s ease-out, opacity 0.6s ease-out; /* Animation effect */
}

.brand-section.visible {
  transform: translateY(0); /* Move section to original position */
  opacity: 1; /* Make it visible */
}

.brand-content-container {
  flex: 1;
  width: 100%;
}

.brand-content {
  flex: 1;
  margin-top: 3em;
  /* Removed transform and opacity properties */
}

.brand-content h1 {
  font-size: 30px;
  color: white;
  margin-top: 10px;
}

.brand-content p {
  font-size: 18px;
  text-align: left;
  color: white;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.5em;
}

.quotes {
  background-color: #d31a42;
  padding: 8px 16px;
  border: none;
  margin-top: 20px;

  border-radius: 20px;
  text-decoration: none;
  color: white;
}

.texts {
  font-size: 30px;
  fill: white;
  font-weight: 600;
}
section {
  padding-block: min(20vh, 2rem);
  width: calc(min(76.5rem, 90%));
  margin-inline: auto;
  color: #111;

  h2 {
    text-transform: capitalize;
    letter-spacing: 0.025em;
    font-size: clamp(2rem, 1.8125rem + 0.75vw, 2.6rem);
  }

  a {
    display: inline-block;
    text-decoration: none;
  }

  .brand-container {
    flex: 1;
    width: 45%;
    margin-top: 3em;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 2rem;
    transform: translateZ(-1px) scale(2); /* Parallax effect for the container */
    transform: translateZ(0);

    .card {
      &:nth-child(1) .box .icon .iconBox {
        background: #cd1d44;
      }

      ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.625rem;

        li {
          text-transform: uppercase;
          background: var(--clr-tag);
          color: #282828;
          font-weight: 700;
          font-size: 0.8rem;
          padding: 0.375rem 0.625rem;
          border-radius: 0.188rem;
        }
      }

      .content {
        padding: 0.938rem 0.625rem;

        h3 {
          text-transform: capitalize;
          font-size: clamp(1.5rem, 1.3909rem + 0.4364vw, 1.8rem);
        }

        p {
          margin: 0.625rem 0 1.25rem;
          color: #565656;
        }
      }
    }

    .card-inner {
      position: relative;
      width: inherit;
      height: 22rem;
      background: #1a1a1a;
      border-radius: 1.25rem;
      border-bottom-right-radius: 0;
      overflow: hidden;

      .box {
        overflow: hidden;

        .imgBox {
          position: absolute;
          inset: 0;

          img {
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80%;
            height: 100%;
            object-fit: cover;
          }
        }

        .icon {
          position: absolute;
          bottom: -0.375rem;
          right: 6.075rem;
          width: 6rem;
          height: 6rem;
          background: #1a1a1a;
          border-top-left-radius: 50%;

          &:hover .iconBox {
            transform: scale(1.1);
          }

          &::before {
            position: absolute;
            content: "";
            bottom: 0.375rem;
            left: -1.25rem;
            background: transparent;
            width: 1.25rem;
            height: 1.25rem;
            border-bottom-right-radius: 1.25rem;
            box-shadow: 0.313rem 0.313rem 0 0.313rem #1a1a1a;
          }

          &::after {
            position: absolute;
            content: "";
            top: -1.3rem;
            right: 1.175rem;
            background: transparent;
            width: 1.25rem;
            height: 1.25rem;
            border-bottom-right-radius: 1.25rem;
            box-shadow: 0.313rem 0.313rem 0 0.313rem #1a1a1a;
          }

          .iconBox {
            position: absolute;
            inset: 0.625rem;
            background: #1a1a1a;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: 0.3s;

            span {
              color: #fff;
              font-size: 1.5rem;
              margin-top: 10px;
              margin-right: 5px;
            }
          }

          svg {
            position: relative;
            top: 60%;
            left: 50%;
            transform: translate(-52%, -54%);
          }
        }
      }
    }
  }
}
@media (max-width: 599px) {
  .card-inner {
    .box {
      .imgBox {
        img {
          width: 100%;
        }
      }
    }
  }
}

/* carousel section css */
.carousel-section {
  width: 90%;
  margin-top: 30px;
}
.carousel-container {
  position: relative;
  width: 99%;
  overflow: hidden;
}

.carousel {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  flex: 0 0 calc((100% / 3) - 40px); /* Calculate width dynamically based on container width */
  height: auto;
  box-sizing: border-box;
  margin: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.2em;
  transition: transform 0.3s ease, opacity 0.3s ease;
  overflow: hidden; /* Ensure overflow of zoomed image is hidden */
  position: relative;
}

.carousel-buttons {
  display: flex;
  margin-left: 90%;
  position: relative; /* Change to absolute positioning */
  right: 10px; /* Align to the right side of the container */
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-button {
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 5px;
  border: none;
  background-color: #232323;
  border-radius: 50px;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateX(20px);
}

.carousel-button.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.carousel-button.hide {
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
}

@media (max-width: 768px) {
  .carousel-item {
    flex: 0 0 calc((100% / 2) - 40px); /* Adjust width for tablets */
    border-radius: 20px;
  }
}

@media (max-width: 599px) {
  .carousel-item {
    flex: 0 0 calc(80% - 20px); /* Adjust width for mobile devices */
    border-radius: 20px;
  }
  .carousel-buttons {
    margin-left: 62%;
    gap: 10px;
  }
}
@keyframes cardEnlargeShrink {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); /* Enlarge the card */
  }
  100% {
    transform: scale(1); /* Shrink back to original size */
  }
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: fill; /* Ensure the image covers the entire container */
  transform: scale(1); /* Start with the image at its normal size */
  transition: transform 0.3s ease;
  border-radius: 10px;
}

@media (max-width: 599px) {
  .carousel-item img {
    transform-origin: center; /* Center the zoom effect */
    transform: scale(1.2);
  }
  .carousel-item {
    flex: 0 0 calc(80% - 40px); /* Adjust width for small devices */
    height: auto; /* Ensure height is fixed */
  }

  .carousel-item.enlarge img {
    transform: scale(1); /* Adjust zoom level as needed */
    object-fit: fill;
  }
  .carousel-section h3 {
    display: block;
  }
  .carousel-section h1,
  h2 {
    display: none;
  }
}
@media only screen and (width: 1920px) and (height: 1080px) {
  .explore {
    bottom: 140px !important;
  }
  .video-robot {
    left: -2%;
  }
}
.carousel-section {
  text-align: left;
}
.carousel-section h1 {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 10px;
}

.carousel-section h3 {
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: left;
  color: #fff;
  font-size: 30px;
}
/* operate section css */

@media only screen and (width: 1920px) {
  .laptop-service-as-screen {
    position: absolute;
    width: 46.9rem !important;
    height: 30.8rem !important;
    top: 23.9% !important;
    left: 30.6% !important;
  }
  .laptop-service-as-carousel-container {
    top: -150% !important;
  }
}
@media only screen and (width: 1280px) {
  .laptop-service-as-screen {
    position: absolute;
    width: 35.4rem !important;
    height: 22.8rem !important;
    top: 47.9% !important;
    left: 48.6% !important;
  }
  .laptop-service-as-carousel-container {
    top: -150% !important;
  }
  .laptop-service-as-carousel-container {
    top: -120% !important;
    left: 1% !important;
  }
}
@media only screen and (max-width: 412px) and (max-height: 915px) {
  .no-vehicles {
    width: 85vw;
    height: 25vh !important;
  }
}
@media (max-width: 599px) {
  .operate-cards {
    display: flex;
    gap: 20px;
    margin-left: 10px;
    overflow-x: auto; /* Enable horizontal scrolling */
    overflow-y: hidden; /* Hide vertical overflow */
    flex-wrap: nowrap; /* Ensure cards stay in a single row */
    padding: 10px 0;
    gap: 10px; /* Adjust the gap between cards as needed */
    scroll-snap-type: x mandatory; /* Optional: Snap scrolling for smoother effect */
    -ms-overflow-style: none; /* Hide scrollbar in Internet Explorer and Edge */
    scrollbar-width: none;
  }
  .brand-content h1 {
    font-size: 20px !important;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .quotes {
    margin-top: 20px !important;
    font-size: 14px !important;
  }
  .business-headings {
    margin-top: 0rem !important;
  }
  .operate-sub-card {
    width: 250px !important;
  }
  .operate-cards::-webkit-scrollbar {
    display: none; /* Hide scrollbar in WebKit browsers */
  }
  .operate-cards .operate-sub-card .sub1,
  .operate-cards .operate-sub-card .sub2,
  .operate-cards .operate-sub-card .sub3,
  .operate-cards .operate-sub-card .sub4 {
    flex: 0 0 auto; /* Prevent flex items from shrinking or growing */
    width: 250px; /* Width of each card, adjust if needed */
    margin: 0 10px; /* Adjust margin to fit your design */
    scroll-snap-align: start; /* Optional: Snap each card to the start */
  }
  .business-headings .heading {
    font-size: 24px;
    font-weight: 700;
  }
  .business-headings .headings {
    font-size: 20px;
    font-weight: 600;
  }
  .business-cards {
    display: revert !important;
    height: auto !important;
  }
  .business-sub-card img {
    height: auto !important;
    width: 85vw !important;
    object-fit: cover;
    object-position: 0 -50px;
    margin-top: 20px !important;
  }
  .business-sub-card h2 {
    margin-top: 0px !important;
  }
  .business-cards > .business-sub-card {
    margin: 0px !important;
    padding: 0px !important;
    height: auto !important;
    width: 90% !important;
  }

  .business-sub-card p {
    width: 90vw;
  }
}
.business-headings {
  font-size: 32px;
  margin-top: 3rem;
}

.operate-sub-card {
  background-color: #f5f5f5;
  padding: 10px;
  width: 100%;
  border-radius: 10px;
  text-align: left;
  box-sizing: border-box;
}

.operate-sub-card img {
  width: 50px;
}

.operate-sub-card h3 {
  font-size: 1.2rem;
  color: #000000;
  margin-top: 0px;
  margin-bottom: 10px;
}

.operate-sub-card p {
  font-size: 0.9rem;
  color: #1b1b1b;
}
/* business section css */
.business-section {
  height: auto;
  padding: 0px;
  width: 90%;
  margin-left: 60px;
  margin-right: 60px;
}
@media (max-width: 599px) {
  .business-section {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
}

.business-headings h1 {
  margin-bottom: 0px;
  margin-top: 10px;
  font-size: 42px;
  font-weight: 500;
  text-align: left;
}

.business-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  overflow: hidden;
}

/* Styles for individual business cards */
.business-cards > .business-sub-card {
  width: 30%;
  height: 100vh;
  margin: 20px;
  padding: 20px;
  background-color: none;
  border-radius: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.content-container,
.business-cards {
  opacity: 1;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.content-container.scrolled-into-view,
.business-cards.scrolled-into-view {
  opacity: 1;
  transform: translateY(0);
}

.business-cards > .business-sub-card:nth-child(2),
.business-cards > .business-sub-card:nth-child(3) {
  /* Remove specific animations */
  background-color: none;
  width: 30%;
  height: 100vh;
}

.business-sub-card img {
  width: 25vw;
  height: 50vh;
  border-radius: 15px;
}

.business-sub-card h2 {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
  color: white;
  text-align: left;
}

.business-sub-card p {
  font-size: 18px;
  font-weight: 400;
  margin-top: 15px;
  line-height: 1.3em;
  color: white;
  text-align: left;
}
/* laptop section container*/
.carousel-section {
  height: auto;
}

.service-name {
  margin-top: -10px;
  color: white; /* Text color for visibility */
  font-size: 32px; /* Adjust font size as needed */
}

.laptop-content {
  position: absolute;
  top: 0; /* Keep content aligned to the top of the laptop container */
  left: 50%;
  transform: translate(-50%, 0); /* Center the content horizontally */
  text-align: center;
  padding: 10px 20px; /* Adjust padding for better spacing */
  box-sizing: border-box;
  width: 100%;
  max-width: 700px;
}

.heading {
  margin: 0;
}

@media (max-width: 599px) {
  .quote {
    display: block;
  }
}
@media (min-width: 600px) {
  .quote {
    display: none;
  }
}
.quote {
  padding: 10px 20px;
  background-color: #d31a42;
  font-size: 14px;
  font-family: "poppins", sans-serif;
  color: white;
  border-radius: 15px;
  left: 50%;
  position: absolute;
  border: none;
  cursor: pointer;
  margin-left: 0%;
}

.quote:hover {
  background-color: #b01536;
}

.laptop-content h3 {
  font-size: 18px;
  font-weight: 400;
  text-align: center;

  color: rgb(85, 85, 85);
  margin-top: 10px;
  margin-bottom: 10px;
}

.laptop-content h2 {
  font-size: 30px;
  font-weight: 600;
  text-align: center;

  color: #d31a42;
  margin-top: 10px;
  margin-bottom: 10px;
}

.laptop-container {
  position: relative;
  height: 140vh; /* Set container to fill the viewport height */
  top: 0;
  left: 0;
  z-index: -1;
}

.laptop {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-image: url("./home-images/laptop banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  object-fit: cover;
}

.screen {
  position: absolute;
  width: 43.8%;
  height: 45.8%;
  top: 27.7%;
  left: 28.3%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}

.heading {
  padding-bottom: 0;
}

/* team section css for large screens*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-section {
  display: none; /* Hidden by default */
  opacity: 0; /* Start with zero opacity */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.team-section.animate {
  display: block; /* Ensure it's visible when animated */
  opacity: 1;
  animation: fadeInUp 0.6s ease-out;
}

.main-contents {
  position: relative;
}

.main-contents.animate {
  animation: downToUp 0.6s ease-out;
}

.teams {
  height: auto;
  color: white;
  width: 90%;
}
/* Sidebar Styles */
.sidebar {
  width: 15%;
  padding-top: 50px;
  position: sticky;
  height: 50vh;
  top: 5%;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.sidebar a {
  padding: 8px 16px;
  text-decoration: none;
  width: 210px;
  text-align: left;
  height: auto;
  border-radius: 6px;
  gap: 10px;
  font-size: 18px;
  color: #fff;
  display: block;
  margin-bottom: 10px;
}

.sidebar a.active,
.sidebar a:hover {
  background-color: white;
  color: #d31a42;
}

/* Main Content Styles */
.main-contents {
  margin-top: 4%;
  transform: translateX(1%);
  width: 99%;
  overflow: hidden;
  background-color: white;
  border-radius: 16px;
  padding-left: 50px;
  padding-top: 10px;
}

.team-section {
  margin-bottom: 40px;
}

.team-section h2 {
  font-size: 20px;
  font-weight: 600;
  margin-left: 20px;
  margin-top: 20px;
  color: #000;
  margin-bottom: 20px;
}

.team-grid {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(2, 2fr);
}

.team-member {
  width: calc(90% - 20px);
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  color: #000;
}

.team-member h3 {
  text-align: left;
  font-size: 18px;
  margin: 0;
}

.team-member p {
  text-align: left;
  margin: 5px 0;
  font-size: 14px;
}

/* WhatsApp Button */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp i {
  color: white;
  font-size: 24px;
}
.team-container {
  width: 100%;
  display: flex;
}
hr {
  width: 96%;
  margin-left: 20px;
}
.team-section {
  display: none;
}

.team-section:first-of-type {
  display: block; /* Show the first section by default */
}
.linkedin-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 15px;
}
.member-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-left: 15px;
}
.teams h1 {
  text-align: center;
  color: #d31a42;
  font-size: 30px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* team section css  for mobiles*/

.carousel-container {
  position: relative;
  width: 99%;
  overflow: hidden;
}

.carousel {
  overflow: hidden;
}

.carousel-tracks {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-items {
  flex: 0 0 calc((100% / 3) - 40px); /* Calculate width dynamically based on container width */
  height: 350px;
  box-sizing: border-box;
  margin: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.2em;
  transition: transform 0.3s ease, opacity 0.3s ease;
  overflow: hidden; /* Ensure overflow of zoomed image is hidden */
  position: relative;
}

@media (max-width: 599px) {
  .carousel-items {
    flex: 0 0 calc(80% - 20px); /* Adjust width for mobile devices */
    border-radius: 10px;
  }

  .teams-mobile h1 {
    margin-top: 70px !important;
  }
}

.member-images {
  width: 100%;
  height: 250px;
  object-fit: cover; /* Ensure the image covers the entire container */
  transform: scale(1); /* Start with the image at its normal size */
  transition: transform 0.3s ease;
  border-radius: 10px;
}
.teams-mobile h1 {
  text-align: center;
  color: #d31a42;
  font-size: 20px;
  margin-top: 40px;

  font-weight: 500;
}
@media (min-width: 600px) {
  .teams-mobile {
    display: none;
  }
  .teams {
    display: block;
  }
}

@media (max-width: 599px) {
  .teams-mobile {
    display: block;
  }
  .teams {
    display: none;
  }
  .carousel-items {
    flex: 0 0 calc(80% - 40px); /* Adjust width for small devices */
    height: auto; /* Ensure height is fixed */
  }
  .carousel-items h3 {
    display: flex;
    font-size: 16px;
    color: white;
    margin-top: 10px;
    font-weight: 600;
  }

  .carousel-items p {
    font-size: 14px;
    color: white;
    font-weight: 400;
    .teams-mobile h1 {
      margin-top: 60px !important;
    }
  }
}
.carousel-section {
  text-align: left;
}
.carousel-items h3 {
  display: flex;

  font-size: 16px;
  font-weight: 600;
}
.carousel-items p {
  font-size: 14px;
  font-weight: 400;
}
.linkedin-icons {
  width: 20px;
  height: 20px;
  padding-left: 5px;
}
.carousel-buttones {
  display: flex;
  justify-content: space-between;
  align-items: center; /* White background */
  padding: 10px;
  border-radius: 10px;
  width: fit-content;
  margin: auto;
}

.carousel-buttone i {
  color: #000000; /* Black color for icons */
  font-size: 20px;
}

.carousel-buttone:hover {
  background-color: #f0f0f0; /* Slightly darker on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.carousel-button.prev {
  margin-right: 20px;
}

.carousel-buttone.next {
  margin-left: 20px;
}

.carousel-buttone.hide {
  visibility: hidden; /* Hide the button when not needed */
}
/* Add these CSS rules */
.counter {
  margin-left: 20px;
  font-size: 1.2em;
  color: white; /* Default color for the counter */
}

.counter span {
  color: #d31a42; /* Pink color for the increasing number */
}

.carousel-buttone {
  display: flex;
  background-color: #ffffff; /* Default background color */
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.carousel-buttone.default {
  background-color: #707070; /* Blue background for inactive state */
  color: #ffffff; /* White color for icon */
  cursor: not-allowed; /* Change cursor to not-allowed for inactive state */
}

.carousel-buttone.active {
  background-color: #ffffff; /* White background for active state */
  color: #000000; /* Black color for icon */
}

.carousel-buttone:hover {
  background-color: #e0e0e0; /* Slightly darker grey on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.carousel-buttone:active {
  background-color: #d0d0d0; /* Darker grey on click */
}
/* clients-section css code */

.valuable-clients-section {
  height: auto;
  width: 90%;
}
.client-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-vehicles {
  width: 24vw;
  background-color: rgb(255, 255, 255);
  height: 44vh;
  flex-direction: column;
  margin: auto;
  border-radius: 12px;
  text-align: center;
  padding: 20px;
}

#value1 {
  color: #0b7b69;
  font-size: 50px;
  font-weight: 600;
  text-align: left;
  padding: 10px;
}
.value-heading {
  font-size: 18px;
  font-weight: 600;
  color: black;
  text-align: left;
  padding: 10px;
}
.value-heading p {
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  color: #4a5e6d;
  margin-top: 5px;
  margin-bottom: 5px;
}
.client-review {
  display: flex;
  justify-content: center; /* Centering content horizontally */
  align-items: center;
}
.client-logos {
  display: flex;
  justify-content: center; /* Centering content horizontally */
  align-items: center;
  margin-left: 1.5%;
}
.valuable-clients-section h1 {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  color: white;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.client-logo {
  width: 45vw;
  background-color: rgb(255, 255, 255);
  height: 45vh;
  flex-direction: column;
  margin: auto;
  border-radius: 12px;
  text-align: center;
  padding: 10px;
}
.image-row1,
.image-row2,
.image-row3,
.image-row4,
.image-row5 {
  display: flex;
  gap: 10px;
}
.image-row1 img {
  height: auto;
  width: 70%;
  margin: 5px;
}
.image-row2 img {
  height: auto;
  width: 65%;
  margin: 5px;
}
.image-row3 img {
  height: auto;
  width: 70%;
}
.image-row4 img {
  height: auto;
  width: 70%;
  margin: 5px;
}
.image-row5 img {
  height: auto;
  width: 70%;
  margin: 5px;
}

.team-line {
  width: 93%;
  color: #111;
}
@media (max-width: 599px) {
  .client-container {
    display: revert;
  }
  .client-review {
    margin-left: 0%;
    margin-bottom: 20px;
  }
  .no-vehicles {
    width: 85vw;
    height: 40vh !important;
    padding: 0px !important;
    border-radius: 10px;
  }
  #value1 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .valuable-clients-section h1 {
    color: #d31a42;
  }
  .client-logo1 {
    border-radius: 10px;
    width: 85vw;
  }
  .client-logos1 {
    display: flex;
    justify-content: center; /* Centering content horizontally */
    align-items: center;
    margin-left: 0%;
  }
  .client-logo1 {
    background-color: rgb(255, 255, 255);
    height: auto;
    flex-direction: column;
    margin: auto;
    text-align: center;
    padding: 10px;
  }
  .client-logos {
    display: none;
  }
  .brand-form-conatiner {
    border-radius: 10px !important;
  }
  .form {
    padding: 10px !important;
  }
}
@media (min-width: 600px) {
  .client-logos1 {
    display: none;
  }
}
/* form css code */

.form-container {
  height: auto; /* Use min-height to ensure it adjusts as needed */
  position: relative;
  z-index: 1;
  padding-top: 10vh; /* Added padding to simulate the previous top offset */
  /* Positive margin to create space below */
}

.brand-form-conatiner {
  display: flex;
  padding: 0px;
  color: #000000;
  width: 70%;
  margin: auto;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(51, 51, 51, 0.1);
}

.rocket-image {
  width: 50%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  height: auto;
}

.form {
  flex: 1;
  padding: 40px;
}

.form h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.form label {
  display: block;
  margin: 15px 0 5px;
  color: var(--hover-text-color);
}

.form input,
.form textarea {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form textarea {
  height: 100px;
}

.form button {
  width: 96%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #d31a42;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.form .error-label {
  color: red;
}
.form .error-input {
  border: 1px solid red;
}

@media (max-width: 599px) {
  .form button {
    width: 94% !important;
  }
  .brand-section {
    display: revert;
  }
  .brand-container {
    width: 100% !important;
  }
  .icon {
    right: 1.775rem !important;
  }
  section {
    & .brand-container {
      & .card-inner {
        & .box {
          & .icon {
            &::after {
              right: 0.9rem !important;
            }
          }
        }
      }
    }
  }
  section {
    & .brand-container {
      & .card-inner {
        & .box {
          & .imgBox {
            img {
              width: 90% !important;
            }
          }
        }
      }
    }
  }
  section {
    & .brand-container {
      margin-left: 5% !important;
    }
  }
  .brand-content h2 {
    display: block;
    font-size: 20px !important;
    font-weight: 600;
  }
  .brand-content h3 {
    font-size: 16px !important;
    font-weight: 400;
  }
  .brand-content p {
    font-size: 16px !important;
  }

  .rocket-image {
    display: none;
  }

  .client-section {
    display: block;
  }

  .brand-form-conatiner {
    width: 90% !important;
    padding: 10px !important;
  }
  .image-container img {
    width: 90% !important;
    left: 4% !important;
  }
  .content-container {
    padding-left: 0px !important;
  }
  .content-container h2 {
    display: block;
    margin-left: 10px;
    font-size: 20px;
    font-weight: 600;
  }
  .content-container .description {
    margin-left: 10px;
  }
}

@media (min-width: 600px) {
  .client-section {
    display: none;
  }
}

.slide {
  height: auto;
  width: 30%;
}
@media only screen and (min-width: 768px) and (max-width: 800px) {
  .brand-section {
    padding: 5px;
    width: 92%;
  }
  section {
    & .brand-container {
      & .card-inner {
        & .box {
          .icon {
            right: 3.25rem;
          }
        }
      }
    }
  }
  .button.quotes {
    margin-left: 65% !important;
  }
  .brand-content h1 {
    font-size: 26px;
  }
  .brand-content p {
    text-align: left;
    line-height: 1.3em;
  }
  .carousel-section h3 {
    font-size: 26px !important;
  }
  .carousel-buttons {
    margin-left: 85% !important;
  }
  .image-container {
    height: auto;
  }
  .how-we-operate-section {
    display: revert;
    height: auto;
  }
  .image-container img {
    border-radius: 1.5%;
    top: 0%;
    left: 2%;
    width: 95%;
  }
  .operate-cards {
    display: flex;
    gap: 20px;
    margin-left: 10px;
    overflow-x: auto; /* Enable horizontal scrolling */
    overflow-y: hidden; /* Hide vertical overflow */
    flex-wrap: nowrap; /* Ensure cards stay in a single row */
    padding: 10px 0;
    gap: 10px; /* Adjust the gap between cards as needed */
    scroll-snap-type: x mandatory; /* Optional: Snap scrolling for smoother effect */
    -ms-overflow-style: none; /* Hide scrollbar in Internet Explorer and Edge */
    scrollbar-width: none;
  }
  .operate-sub-card {
    width: 250px !important;
  }
  .operate-cards::-webkit-scrollbar {
    display: none; /* Hide scrollbar in WebKit browsers */
  }
  .operate-cards .operate-sub-card .sub1,
  .operate-cards .operate-sub-card .sub2,
  .operate-cards .operate-sub-card .sub3,
  .operate-cards .operate-sub-card .sub4 {
    flex: 0 0 auto; /* Prevent flex items from shrinking or growing */
    width: 250px; /* Width of each card, adjust if needed */
    margin: 0 10px; /* Adjust margin to fit your design */
    scroll-snap-align: start; /* Optional: Snap each card to the start */
  }
  .business-headings h1 {
    font-size: 36px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .business-cards {
    display: flex;
    overflow-x: auto;
    height: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
  }

  .business-cards::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
  }

  .business-cards > .business-sub-card {
    flex: 0 0 auto;
    width: 80%;
    margin-right: 20px;
    scroll-snap-align: start;
  }
  .business-sub-card {
    height: auto !important;
  }

  .business-cards {
    scroll-behavior: smooth;
  }
}
.certificate-section {
  width: 100%;

  padding: 0px;
}
.certificate-section h1 {
  font-size: 36px;
  font-weight: 600;
  color: white;
  text-align: center;
}
.service-toggle {
  display: none; /* Initially hidden */
}

.service-toggle.active {
  display: block; /* Shown when active */
}
@media (min-width: 990px) {
  .unique-carousel-section-large {
    display: block;
  }
  .carousel-section {
    display: none;
  }
}
@media (max-width: 989px) {
  .unique-carousel-section-large {
    display: none;
  }
  .carousel-section {
    display: block;
  }
}

.unique-carousel-container {
  position: relative;
  width: 95%;
  margin: 0 auto;
  overflow: hidden;
}

.unique-carousel {
  overflow: hidden;
}

.unique-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.unique-carousel-buttons {
  position: relative;
  display: flex;
  margin-left: 92%;
  gap: 10px;
}

.unique-carousel-button {
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 5px;
  border: none;
  background-color: #232323;
  border-radius: 50px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateX(20px);
}

.unique-carousel-button.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.unique-carousel-button.hide {
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
}

@keyframes unique-cardEnlargeShrink {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); /* Enlarge the card */
  }
  100% {
    transform: scale(1); /* Shrink back to original size */
  }
}

.unique-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: fill; /* Ensure the image covers the entire container */
  transform: scale(1); /* Start with the image at its normal size */
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.unique-carousel-section-large {
  text-align: left;
}

.unique-carousel-section-large h1 {
  color: #fff;

  font-size: 24px;
  font-style: normal;
  padding-left: 40px;
  font-weight: 400;
  margin-bottom: 10px;
}

.unique-carousel-section-large h3 {
  font-weight: 500;
  padding-left: 40px;
  text-align: left;
  color: #fff;

  font-size: 30px;
}

.unique-carousel-item {
  flex: 0 0 calc((100% / 3) - 40px); /* Adjust based on the number of items to show */
  height: 400px;
  box-sizing: border-box;
  margin: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.2em;
  transition: transform 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
  position: relative;
}

.unique-carousel-item:hover .unique-details {
  opacity: 1;
  transform: translateY(0);
}

.unique-details p {
  font-size: 14px;
  margin-top: 1rem;
  padding: 30px;
  margin-bottom: 0px !important;
}

.unique-carousel-item .unique-visit-website {
  display: block;
  color: #d31a42; /* link color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.unique-carousel-item .unique-visit-website:hover {
  color: #d41841; /* darker link color on hover */
}
@media (max-width: 1280px) {
  .teams {
    width: 95%; /* Adjust the width to fit smaller screens */
  }

  .sidebar {
    width: 20%; /* Increase sidebar width for readability */
    height: auto; /* Adjust height for better visibility */
  }

  .main-contents {
    width: 75%; /* Adjust content width */
    padding-left: 30px; /* Reduce padding for smaller screens */
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-member {
    padding: 10px; /* Adjust padding */
  }

  .team-member h3 {
    font-size: 16px; /* Reduce font size */
  }

  .team-member p {
    font-size: 12px; /* Reduce font size */
  }

  .member-image {
    width: 80px; /* Reduce image size */
    height: 80px;
  }

  .linkedin-icon {
    width: 30px; /* Reduce LinkedIn icon size */
    height: 30px;
  }
}
.carousel-slide img {
  object-fit: cover;
}
.laptop-small-button {
  padding: 8px 20px;
  background-color: #d31a42;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: white;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  margin-left: 35%;
  margin-top: 5%;
}

.laptop-small-button:hover {
  background-color: #d31a42;
}

@media (min-width: 481px) {
  .laptop-small-heading {
    display: none;
  }
}

.laptop-small-heading {
  font-size: 20px;
  font-weight: 700;
  color: #d31a42;
  margin-top: 50px;
  margin-bottom: 15px;
  text-align: center;
  padding: 20px;
}
.laptop-service-as-content {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  padding: 10px 20px;
  box-sizing: border-box;
  width: 100%;
  max-width: 700px;
}

.laptop-service-as-heading {
  margin: 0;
}

.laptop-service-as-quote {
  padding: 10px 20px;
  background-color: #d31a42;
  font-size: 14px;
  font-family: "poppins", sans-serif;
  color: white;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  margin-left: 0%;
}

.laptop-service-as-quote:hover {
  background-color: #b01536;
}

.laptop-service-as-content h3 {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: rgb(85, 85, 85);
  margin-top: 10px;
  margin-bottom: 10px;
}

.laptop-service-as-content h2 {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #d31a42;
  margin-top: 10px;
  margin-bottom: 10px;
}

.laptop-service-as-container {
  position: relative;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
}

.laptop-service-as {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 125vh;
  background-image: url("./home-images/laptop banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  object-fit: cover;
}

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

.carousel-frame {
  position: relative;
  width: 39.7%;
  top: 25.5%;
  left: 3px;
  height: min(calc(90vh - 10px), 350px);
  margin: 10px auto;
  overflow: hidden;
  border: none;
}

.carousel-slide {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  mix-blend-mode: multiply;
}

.carousel-slide img {
  min-width: 100%;
  object-fit: fill;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media only screen and (width: 390px) and (height: 844px) {
  .carousel-frame {
    width: 68% !important;
    top: 24.8% !important;
    left: 2px !important;
    border-radius: 3px !important;
    height: min(calc(90vh - 10px), 169px) !important;
  }
}
@media only screen and (max-width: 320px) and (max-height: 568px) {
  .carousel-frame {
    width: 62.5% !important;
    top: 24.5% !important;
    left: 2px !important;
    border-radius: 3px !important;
    height: min(calc(90vh - 10px), 130px) !important;
  }
}
@media only screen and (max-width: 375px) and (max-height: 812px) {
  .carousel-frame {
    width: 76% !important;
    top: 25% !important;
    left: 2px !important;
    border-radius: 3px !important;
    height: min(calc(90vh - 10px), 195px) !important;
  }
}
@media only screen and (max-width: 414px) and (max-height: 896px) {
  .carousel-frame {
    width: 71% !important;
    top: 25% !important;
    left: 2px !important;
    border-radius: 3px !important;
    height: min(calc(90vh - 10px), 191px) !important;
  }
}
@media only screen and (max-width: 360px) and (max-height: 780px) {
  .carousel-frame {
    width: 76% !important;
    top: 24.8% !important;
    left: 2px !important;
    border-radius: 3px !important;
    height: min(calc(90vh - 10px), 180px) !important;
  }
}
@media only screen and (max-width: 393px) and (max-height: 852px) {
  .carousel-frame {
    width: 76.5% !important;
    top: 24.8% !important;
    left: 2px !important;
    border-radius: 3px !important;
    height: min(calc(90vh - 10px), 203px) !important;
  }
}

@media only screen and (max-width: 428px) and (max-height: 926px) {
  .carousel-frame {
    width: 68% !important;
    top: 24.8% !important;
    left: 2px !important;
    border-radius: 3px !important;
    height: min(calc(90vh - 10px), 190px) !important;
  }
}
@media only screen and (max-width: 430px) and (max-height: 932px) {
  .carousel-frame {
    width: 76.4% !important;
    top: 24.8% !important;
    left: 2px !important;
    border-radius: 3px !important;
    height: min(calc(90vh - 10px), 220px) !important;
  }
}
@media only screen and (max-width: 360px) and (max-height: 800px) {
  .carousel-frame {
    width: 74.9% !important;
    top: 24.8% !important;
    left: 2px !important;
    border-radius: 3px !important;
    height: min(calc(90vh - 10px), 175px) !important;
  }
}
@media only screen and (max-width: 393px) and (max-height: 851px) {
  .carousel-frame {
    width: 74.6% !important;
    top: 24.8% !important;
    left: 2px !important;
    border-radius: 3px !important;
    height: min(calc(90vh - 10px), 187px) !important;
  }
}
@media only screen and (max-width: 412px) and (max-height: 915px) {
  .carousel-frame {
    width: 75.4% !important;
    top: 24.8% !important;
    left: 2px !important;
    border-radius: 3px !important;
    height: min(calc(90vh - 10px), 203px) !important;
  }
}
@media only screen and (max-width: 360px) and (max-height: 880px) {
  .carousel-frame {
    width: 84% !important;
    top: 24.8% !important;
    left: 2px !important;
    border-radius: 3px !important;
    height: min(calc(90vh - 10px), 203px) !important;
  }
}
@media only screen and (max-width: 360px) and (max-height: 804px) {
  .carousel-frame {
    width: 75% !important;
    top: 24.8% !important;
    left: 2px !important;
    border-radius: 3px !important;
    height: min(calc(90vh - 10px), 180px) !important;
  }
}

@media only screen and (max-width: 1114px) and (max-height: 705px) {
  .carousel-frame {
    width: 56% !important;
    top: 25.8% !important;
    left: 2px !important;
    border-radius: 3px !important;
    height: min(calc(90vh - 10px), 410px) !important;
  }
  .team-member {
    width: calc(90% - 60px) !important;
  }
  .video-robot {
    position: absolute;
    margin-top: 25% !important;
  }
}

@media only screen and (max-width: 1280px) and (max-height: 800px) {
  .carousel-frame {
    width: 55%;
    top: 26%;
    left: 3px;
    height: min(calc(90vh - 10px), 463px);
  }
  .sidebar a {
    width: 210px !important;
  }
  .no-vehicles {
    height: 46vh !important;
  }
  .client-logo {
    height: 35vh !important;
  }
  .teams h1 {
    margin-top: 12rem !important;
  }
  .video-robot {
    /* width: 14%; */
    left: 8% !important;
    bottom: 20px !important;
  }
}

/* For small laptops (1280px to 1440px) */
@media only screen and (min-width: 1281px) and (max-width: 1440px) {
  .laptop-service-as-quote {
    margin-top: 0px !important;
  }
  /* Your CSS for small laptops */
  .laptop-service-as {
    height: 125vh;
  }

  .carousel-frame {
    width: 39.7%;
    top: 25.5%;
    left: 3px;
    height: min(calc(90vh - 10px), 350px);
  }
}

/* For large laptops (1440px to 1920px) */
@media only screen and (min-width: 1441px) and (max-width: 1920px) {
  /* Your CSS for large laptops */
  .laptop-service-as {
    height: 110vh;
  }

  .image-container {
    padding: 0px !important;
  }
  .business-cards > .business-sub-card {
    height: 85vh !important;
  }
  .business-cards > .business-sub-card:nth-child(2),
  .business-cards > .business-sub-card:nth-child(3) {
    height: 85vh !important;
  }
  .carousel-frame {
    width: 39.7%;
    top: 23.2%;
    left: 3px;
    height: min(calc(90vh - 10px), 465px);
  }
  .unique-carousel-buttons {
    margin-left: 92% !important;
  }
  .unique-carousel-buttons i {
    font-size: 35px !important;
  }
}

/* For desktop monitors */
@media only screen and (min-width: 1921px) {
  .laptop-service-as-quote {
    margin-top: 25px !important;
  }
  .laptop-service-as {
    height: 105vh;
  }
  .carousel-frame {
    width: 39.7%;
    top: 21.5%;
    left: 3px;
    height: min(calc(90vh - 10px), 465px);
  }
  /* Your CSS for desktop */
}


