* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  scroll-behavior: smooth;
}

/* whatsapp-button-container */

.whatsapp-button-container {
  position: fixed;
  right: 2px;
  bottom: 174px;
  /* background-color: rgb(254, 68, 0); */
  z-index: 1000;
  color: white;
  padding: 5px 10px;
  border-radius: 50px;
}

.whatsapp-icon {
  position: static;
  width: 60px;
  border-radius: 50%;
  margin-left: 7px;
}

.whatsapp-question-container > span {
  background: white;
  color: black;
  padding: 9px 18px;
  border-radius: 16px;
  font-size: 17px;
  box-shadow: 0px 0px 10px rgba(128, 128, 128, 0.36);
}
.whatsapp-container {
  margin: 0px 10px;
}
@media (max-width: 767px) {
  .whatsapp-button-container {
    position: fixed;
    right: 0px;
    bottom: 170px;
  }

  .whatsapp-question-container > span {
    display: none;
  }
  .whatsapp-button-container {
    position: fixed;
    right: -14px;
    bottom: 151px;
}

}

/* call-button-container */
.call-button-container {
  position: fixed;
  right: 26px;
  bottom: 114px;
  z-index: 1000;
  color: white;
  border-radius: 50px;
}
.call-button-container:hover {
  cursor: pointer;
}

.phone-icon {
  position: static;
  padding: 23px;
  border-radius: 50%;
  background-color: rgb(254, 68, 0);
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.211);
}
.call-container {
  margin-left: 13px;
}
.question-container {
  background: white;
  display: flex;
  flex-direction: column;
  color: black;
  box-shadow: 0px 0px 10px rgba(128, 128, 128, 0.282);
  padding: 0px 28px;
  border-radius: 20px;
}

@media screen and (max-width: 653px) {
  .phone-icon {
    padding: 22px;
    margin-right: 3px !important ;
  }
  .call-button-container {
    position: fixed;
    right: 8px;
    bottom: 94px;
  }
  .question-container {
    display: none !important;
  }
}

/* navbar */
/* Ensure the close icon shows when the hamburger menu is open */
.navbar-toggler.collapsed .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E");
}

/* Desktop: Dropdown opens on hover */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block !important;
  }
  .d-lg-none {
    display: block !important;
  }
}
@media (max-width: 992px) {
  #dropdownIcon {
    position: static !important;
  }
  .rotate-button {
    transform: rotate(180deg);
  }
  .show {
    display: block !important;
  }
}

/* #navigation-bar */
/* Mobile: Ensure dropdown menu is hidden initially */
.nav-item .dropdown-menu {
  display: none;
}
nav {
  background-color: white !important;
  box-shadow: 0px 0px 10px rgba(128, 128, 128, 0.223) !important;
}
#nav-logo {
  height: 80px;
  object-fit: cover !important;
}

.nav-item {
  margin: 0px 10px;
}

/* Show dropdown menu when 'show' class is added */

.nav-link {
  color: black !important;
}

/* Align the Services link and caret icon next to each other on mobile */
.d-flex.align-items-center {
  display: flex;
  align-items: center;
}
.dropdown-menu {
  border: none !important;
  background-color: white !important;
  padding: 10px !important;
  box-shadow: 0px 0px 10px rgba(128, 128, 128, 0.489);
  width: 200px;
}

/* Fix dropdown icon position on mobile */
.dropdown-toggle-icon {
  padding-left: 5px !important;
}

/* Make dropdown icon visible on all screens and rotate 180 degrees on click */
.dropdown-toggle-icon {
  transition: transform 0.3s ease-in-out; /* Smooth transition for rotation */
  padding-left: 5px !important; /* Ensure padding is visible across all screens */
}

.nav-item .dropdown.show .dropdown-toggle-icon {
  transform: rotate(
    180deg
  ); /* Rotate the icon 180 degrees when dropdown is open */
}

/* Show dropdown on hover for large screens */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

.dropdown-container {
  display: inline-flex;
  align-items: center;
  width: 200px !important;
}
.dropdown-menu {
  width: 200px !important;
}

.dropdown-toggle::after {
  padding-left: 5px;
}

.dropdown-button {
  border: none;
  background: transparent;
  padding-left: 5px;
}
.dropdown-item {
  padding: 7px 0px !important;
}

/* #hero-section */

#hero-section-container {
  height: 450px;
  width: 100%;
}

#hero-section-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  position: absolute;
}

.services-content {
  width: 100%;
  height: 100%;
}

#hero-section-container::before {
  content: "";
  width: 100%;
  height: 450px;
  top: 0;
  left: 0;
  display: block;
  position: absolute;
  /* background: rgba(0, 0, 0, 0.497) center center/cover; */
  z-index: 1;
}

.hero-heading {
  color: white;
  font-size: 5rem;
  font-family: urbanist, sans-serif;
  z-index: 2;
}

/* parallax-section */

.hero {
  position: relative;
  min-height: 600px;
  /* background-image: url('/img/about-parallax-1.jpg'); */
  background-color: rgb(254, 68, 0);
  /* Replace with your image */
  background-size: cover;
  background-attachment: fixed;
  /* Parallax effect */
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero2 {
  position: relative;
  min-height: 600px;
  /* background-image: url('/img/nasa-Q1p7bh3SHj8-unsplash.jpg'); */
  background: rgb(254, 68, 0);
  /* Replace with your image */
  background-size: cover;
  background-attachment: fixed;
  /* Parallax effect */
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero-content > p {
  width: 60%;
}

.main-robot {
  width: 60px;
}

.hero-content .btn {
  background-color: rgb(254, 68, 0);
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  border: solid white;
}

.hero-content .btn:hover {
  background-color: white;
  color: black;
}

.hero::before {
  /* content: ''; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Dark overlay to improve text readability */
  z-index: 1;
}

.parallex1-heading {
  width: 50%;
  font: small;
}

/* Styles for the small images on the left and right */
.small-image {
  position: absolute;
  width: 200px;
  /* Set the width of the small image */
  height: 200px;
  /* Set the height of the small image */
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  /* These images are behind the text but above the background */
}

.left-image {
  background-image: url("/img/about-robot1.png");
  width: 150px;

  /* Replace with your left small image */
  top: 70%;
  /* Center vertically */
  left: 8%;
  /* Place on the left side */
  transform: rotate(-30deg);
  /* scale: 2; */
}

.right-image {
  background-image: url("/img/about-robot2.png");
  /* Replace with your right small image */
  top: 20%;
  /* Center vertically */
  right: 10%;
  /* Place on the right side */
  transform: translateY(-50%);
  /*Centering */
  transform: rotate(30deg);
  /* scale: 1.3; */
}

/* process-section */
.process-item {
  background-color: rgb(254, 68, 0);
  color: white;
  /* margin: 10px 0px; */
  border-radius: 200px;
  box-shadow: 10px 10px 10px grey;
}

.process-icon {
  width: 150px;
  height: 150px;
}

svg {
  width: 40% !important;
}

lord-icon {
  width: 30px;
}

/* counter-section */
#counter-section {
  margin-top: 200px;
}
#counter {
  /* color: black; */
  color: white;
  /* background: rgba(black, .05); */
  padding: 25px;
  /* width: 800px; */
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
li {
  list-style: none;
}

#counter > li {
  flex: 1;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bolder;
}

.counter-left-subheading {
  background: rgba(255, 255, 255, 0.458);
  opacity: 0.8;
  width: 250px;
  text-align: center;
  padding: 2px 13px;
  border: solid black;
  border-radius: 50px;
  color: black;
}
.counter-view-button {
  padding: 10px 15px;
  background: rgb(254, 68, 0);
  width: 200px;
  border-radius: 100px;
  border: solid white;
}
.counter-view-button:hover {
  background: white;
  color: black !important;
  border: solid white;
}
.counter-view-button:active {
  background: white !important;
}
.counter-view-button:focus {
  background: white !important;
}

.counter-container {
  z-index: -1;
  height: 400px;
  width: 100%;
  margin-top: -150px;
  position: relative;
  border-radius: 100px 100px 0px 0px;
  position: absolute;
}
#counter-img {
  width: 100%;
  /* position: absolute; */
}
#digital-solution-wrapper {
  margin-top: 100px;
  padding-top: 50px;
  background-color: rgb(254, 68, 0);
  z-index: 1;
  border-radius: 100px 100px 0px 0px;
}

/* company-mission-section */
/* color: white; */
.card {
  /* background: none; */
  border: none;
}

.col > .card > .card-body {
  background: black;
  color: white;
}

/* footer-section */

#footer-section {
  position: relative;
  color: white;
  /* background: black; */
  background: url("/img/nasa-Q1p7bh3SHj8-unsplash.jpg") center center/cover;
}

/* #footer-section::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    position: absolute;
    background: black center center/cover;
    opacity: .4;
    z-index: -1;
} */

.footer-logo {
  width: 150px;
}

.footer-link {
  color: white;
  text-decoration: none;
  margin: 0px 15px;
}

/* #scroll-indicator */
/* Style for the Scroll Indicator */
.scroll-indicator {
  background-color: white;
  padding: 13px 7px;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
  border-radius: 10px 0px 0px 10px;
  box-shadow: -6px 1px 10px #80808042;
}

.scroll-indicator input[type="radio"] {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: rgb(254, 68, 0);
  cursor: pointer;
  margin: 5px;
}

.scroll-indicator input[type="radio"]:checked {
  border-color: black;
  /* Active color for checked radio button */
  background-color: black;
  /* Active color for checked radio button */
}
#counter-container {
  background: black !important;
}

@media screen and (max-width: 1000px) {
  .menus {
    display: hidden;
    background: white;
    margin-right: -100%;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.215);
    width: 200px;
  }

  .menus > ul > li {
    float: unset;
    margin: 0px 10px;
    padding: 10px 19px;
  }

  .hamburger {
    display: inline;
    right: 0;
    position: absolute;
    z-index: 6;
    color: white;
  }

  .logo {
    display: block;
  }
}

@media screen and (max-width: 813px) {
  .robots-container {
    display: block;
    position: relative;
    width: 100%;
    height: 200px;
  }

  .hero {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .process-item {
    border-radius: 0px;
  }

  .process-icon {
    width: 236px;
    height: 64px;
  }
  #counter {
    display: block;
  }
  #counter > li {
    width: 48%;
    display: inline-block;
    position: relative;
  }
  .counter-container {
    margin-top: -209px;
  }
  #counter-section {
    margin-top: 250px;
  }
  #footer-services-section {
    display: none !important;
  }
}

@media screen and (max-width: 746px) {
  .hero-heading {
    font-size: 4rem;
  }
}

@media (max-width: 700px) {
  .counters .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .counters .container > div:nth-of-type(1),
  .counters .container > div:nth-of-type(2) {
    border-bottom: 1px lightskyblue solid;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 500px) {
  .footer-section-container > a > p {
    margin: 3px 0px;
  }

  .footer-section-container > p {
    margin: 0px;
  }

  .footer-sections-heading {
    margin-top: 1.2rem !important;
  }
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  #footer-services-section {
    display: none !important;
  }
}

@media screen and (max-width: 467px) {
  .hero-content > p {
    width: 90%;
  }

  .small-image {
    width: 150px;
    height: 150px;
  }
  #counter > li {
    flex: 1;
    text-align: center;
    font-size: 2rem;
  }
}
