body {
  font-family: 'Lexend', sans-serif;
  overflow-x: hidden;
}

.main {
  overflow: hidden;
}
.VIpgJd-ZVi9od-ORHb-OEVmcd{
  visibility: hidden !important;
}
/* .navbar {
  font-size: 16px;
  background-color: transparent;
}
#navbarNav #active{
  color: #1E97C6;
}
#navbarNav a:hover,
#navbarNav a:active{
  color: #1E97C6;
}
.navbar-nav .nav-item .nav-link {
  color: #1E1E1E;
  height: auto;
  font-size: 18px;
  font-style: "Medium";
  font-family: "Lexend";
  font-weight: 600;
  line-height: normal;
  font-stretch: normal;
  text-decoration: none;

}
.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link:focus {
  color: #1E97C6;
} */

/* Ensure the navbar and logo are aligned */
.navbar {
  padding: 0 15px;
  font-size: 16px;
  background-color: transparent;
}

#navbarNav #active {
  color: #1E97C6;
}

#navbarNav a:hover,
#navbarNav a:active {
  color: #1E97C6;
}

.navbar-brand .logo {
  height: auto;
  width: 80%;
}

.navbar-nav .nav-item .nav-link {
  color: #1E1E1E;
  height: auto;
  font-size: 18px;
  font-style: "Medium";
  font-family: "Lexend";
  font-weight: 600;
  line-height: normal;
  font-stretch: normal;
  text-decoration: none;

}

/* Space out the nav items */
.navbar-nav {
  display: flex;
  flex-direction: row;
}

.navbar-nav .nav-item {
  margin: 0 15px;
  color: #1E1E1E;
  height: auto;
  font-size: 18px;
  font-style: "Medium";
  font-family: "Lexend";
  font-weight: 600;
  line-height: normal;
  font-stretch: normal;
  text-decoration: none;
}

.nav-link {
  padding: 10px 15px;
  /* Adjust padding for nav links */
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link:focus {
  color: #1E97C6;
}

/* Ensure the navbar collapses properly on smaller screens */
@media (max-width: 992px) {
  .navbar-nav {
    flex-direction: column;
  }

  .navbar-nav .nav-item {
    margin: 5px 0;
    /* Adjust spacing for mobile view */
  }
}


.workbutton {
  background-color: transparent;
  border: 3px solid;
  border-image: linear-gradient(90deg, #1E97C6 0%, #22356F 100%);
  border-image-slice: 1;
  color: #1E1E1E;
  height: auto;
  font-size: 18px;
  font-style: "Medium";
  font-family: "Lexend";
  font-weight: 600;
  line-height: normal;
  font-stretch: normal;
  text-decoration: none;
  /* padding: 5px;
  width: 110%; */
}

.workbutton:hover {
  color: #1E97C6;
}

.heropage1 {
  position: relative;
}

.logo {
  width: 60%;
  height: auto;
}

.arrowani1 {
  width: 10%;
  height: auto;
  animation: slideLeft 1s ease-in-out infinite alternate;
  /* Define animation */
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
    /* Start position */
  }

  100% {
    transform: translateX(30%);
    /* End position */
  }
}

.hero-container {
  position: relative;
  display: inline-block;
  /* Ensures the container fits the image */
  width: 100%;
  /* Ensures the container scales with the screen */
}

.hero-container img {
  display: block;
  width: 100%;
  /* Ensures the image scales with the container */
}

.hero-container h1 {
  position: absolute;
  top: 30%;
  /* Adjusts vertical alignment */
  left: 52%;
  /* Centers the text horizontally */
  transform: translate(-50%, -40%);
  /* Centers the text within its container */
  color: white;
  /* Text color */
  text-align: left;
  font-size: 65px;
  /* Large font for larger screens */
  font-weight: 600;
  /* Semi-bold */
  margin: 0;
  width: 100%;
  text-align: justify;
  font-family: "Lexend", sans-serif;
  /* Ensure fallback font */
}


.hero-container .arrow {
  position: absolute;
  bottom: -10px;
  /* Moves the arrow 10px from the top of the container */
  right: 10px;
  /* Positions the arrow at the right end */
  transform: translateX(0);
  /* No need to translate horizontally when at the right end */
  animation: moveUpDown 2s infinite ease-in-out;
  width: 50px;
  /* Adjust width of the arrow */
  height: auto;
}

@keyframes moveUpDown {

  0%,
  100% {
    transform: translate(-50%, 0);
    /* Start and end at the same position */
  }

  50% {
    transform: translate(-50%, 10px);
    /* Move down 10px at 50% of the animation */
  }
}

@media (max-width: 768px) {
  .hero-container .arrow {
    width: 40px;
    /* Reduce arrow size for smaller screens */
    right: 5px;
    /* Adjust right position for smaller screens */
    /* Adjust top position for smaller screens */
  }
}

@media (max-width: 576px) {
  .hero-container .arrow {
    width: 30px;
    /* Further reduce arrow size for extra small screens */
    right: 5px;
    /* Keep it close to the right edge on small screens */
    /* Adjust top position for extra small screens */
  }
}

/* Small screens (landscape phones) */
@media (max-width: 768px) {
  .hero-container h1 {
    font-size: 30px;
    /* Adjust font size for small screens */
    top: 35%;
    /* Adjust vertical alignment */
    left: 55%;
    /* Center text horizontally */
    transform: translate(-50%, -35%);
    /* Adjust centering */
  }
}

/* Small screens (landscape phones) */
@media (max-width: 992px) {
  .hero-container h1 {
    font-size: 40px;
    /* Adjust font size for small screens */
    top: 35%;
    /* Adjust vertical alignment */
    left: 55%;
    /* Center text horizontally */
    transform: translate(-50%, -35%);
    /* Adjust centering */
  }
}

/* Extra small screens (portrait phones) */
@media (max-width: 576px) {
  .hero-container h1 {
    font-size: 20px;
    /* Adjust font size for extra small screens */
    top: 30%;
    /* Adjust vertical alignment */
    left: 55%;
    /* Center text horizontally */
    transform: translate(-50%, -30%);
    /* Adjust centering */
  }
}

/*********************************************************** since  *****************************************/
.since h1 {
  font-size: 24px;
  font-family: "Lexend";
  font-style: "Medium";
  color: #1E1E1E;
  font-weight: bold;
}

.since span {
  font-size: 32px;
  font-family: "Lexend";
  font-style: "Medium";
  color: #1E1E1E;
  font-weight: bold;
  flex-grow: 1;
}

.since p {
  font-size: 20px;
  font-family: "Lexend";
  font-style: "Regular";
  color: #1E1E1E;
  text-align: justify !important;
  /* align-items: center; */
}

@media (max-width: 1200px) {
  .since .row {
    text-align: center;
  }

  .since .d-flex {
    flex-direction: column !important;
  }

  .since .mr-md-3,
  .since .ml-md-3 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .since img {
    margin-bottom: 20px;
  }

  .since .text-content {
    margin-bottom: 20px;
  }

  .since h1 {
    text-align: center;
  }
}


/************************************************** core values  ***************************************/
.core p {
  text-align: justify !important;
  font-family: "Lexend";
  font-style: "Regular";
  font-size: 20px;
  color: #1E1E1E;
}

.core .container {
  max-width: 70%;
  margin: 0 auto;
}

.core h2 {
  margin-bottom: 0;
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 60px;
  color: #333333;
}

.core h3 {
  margin-top: 0;
  font-family: "Open Sans";
  font-style: "Reguar";
  font-size: 60px;
  color: #333333;
}

@media (min-width: 768px) {

  .core h2,
  .core h3 {
    display: block;
    text-align: left;
  }

  .core img {
    margin-left: 20px;
  }

  .core p {
    margin-left: 20px;
  }
}

@media (max-width: 767px) {

  .core h2,
  .core h3 {
    display: inline-block;
  }
}

@media (max-width: 992px) {
  .core .d-flex {
    flex-direction: column;
    /* Stack elements vertically */
    align-items: center;
    /* Center items */
    text-align: center;
    /* Center text */
  }

  .corearrow {
    margin: 20px 0;
    /* Add margin above and below the image */
  }

  .core .d-flex h2,
  .core .d-flex h3 {
    margin: 0;
    /* Remove margin from headings */
  }

  .core p {
    margin: 20px 0;
    /* Add margin to separate paragraph */
    font-size: 0.9rem;
    /* Decrease font size for tablet view */
  }
}

/************************************************* corevalues2  **********************************/
/* @media (max-width: 768px) {
  .stats-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stats-item {
    width: 100%;
    margin-bottom: 20px;

    text-align: center;
  }

  .stats-item img {
    max-width: 80%;
    height: auto;
  }
}


@media (max-width: 1024px) {
  .stats-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: auto;
  }

  .stats-item {
    flex: 1 1 50%;
    max-width: 25%;
    text-align: center;
  
  }
} */


/* Ensure the images are responsive */
.img-responsive {
  width: 100%;
  height: auto;
}

/* Adjust layout for smaller screens */
@media (max-width: 768px) {
  .stats-item {
    text-align: center;
    margin-bottom: 15px;
  }
  
  .stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .img-responsive {
    width: 50%;
    height: auto;
  }
}
 

/************************************** ourclients  ************************************************/
.Types {
  /* background-color: #E7E7E7; */
  padding: 20px;
  display: flex;
  /* Added to center content */
  align-items: center;
  justify-content: center;
}

.section-title1 h2 {
  /* background-color: #E7E7E7; */
  padding: 20px;
  display: flex;
  /* Added to center content */
  align-items: center;
  justify-content: center;
}

.grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  /* background-color: #E7E7E7; */
  padding: 20px;
  margin: 0 auto;
  max-width: 1200px;
}

.card {
  /* background-color: white; */
  /* border-radius: 10px; */
  padding: 10px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease; */
  max-width: 260px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  border: none;
  /* Removed border and shadow styles */
}

/* .card:hover {
  transform: translateY(-5px);
} */

.card img {
  width: 80%;
  border-radius: 5px;
  margin-bottom: 10px;
}

.card h2 {
  margin-top: 0;
  font-size: 1.5em;
  color: #333;
  /* Removed unnecessary flex properties */
  text-align: center;
  /* Ensure text is centered */
}

.card p {
  font-size: 14px;
  color: #666;
  text-align: center;
  /* Center align text */
  line-height: 1.6;
}

@media (max-width: 768px) {
  .grid-container {
    gap: 20px;
  }

  .card h2 {
    font-size: 1.3em;
  }

  .card p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .card {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .card h2 {
    font-size: 1.2em;
  }

  .card p {
    font-size: 12px;
  }
}

.line1 {
  width: 100px;
  /* Set a fixed width for the line image */
  margin: -27px auto 30px;
  /* Center the image and add space below */
  display: block;
}




/* <!--******************************************* footer  ****************************************--> */


.footer-distributed {
  background-color: #F3F3F3;
  align-items: center;


}

.footer-distributed .footer-center-text p {
  font-size: 18px;
}

.footer-distributed .footer-center-text img {
  width: 30px;

}


.footer-logo {
  max-width: 100%;
  height: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  /* Space between social icons */
}

.footer-social-icon {
  width: 24px;
  /* Adjust size of social icons */
  height: auto;
}

.footer-company-name {
  font-size: 14px;
  color: #777;
  /* Lighter grey text color */
}

.footer-item {
  display: flex;
  align-items: center;
}

.footer-icon {
  width: 24px;
  /* Adjust size of icons */
  height: auto;
}

.footer-text {
  margin: 0;
}

.footer-company-about {
  text-align: center;


}
.footermap {
  max-width: 100%;
  height: auto;
}

.footer-designed {
  font-size: 14px;
}

.fistologo {
  width: 50px;
  /* Adjust size of logo */
  height: auto;
  margin-left: 5px;
}

@media screen and (max-width: 767px) {
  .footer-center-item {
    align-items: center !important;
  }

  .footer-item,
  .footer-text {
    align-items: left !important;
  }
}

.footer-icons {
  display: flex;
  justify-content: center;
  /* Center horizontally */
  align-items: center;
  /* Center vertically */
  text-align: center;
  /* Center text inside the flex container */
}


/*=========================== Back to Top Button Styling ==========================*/

/* Back to Top Button */
#backToTop {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99999999999999999; /* Make sure it is on top of other elements */
  cursor: pointer;
  border-radius: 50%;
  padding: 15px; /* Adjust padding for better spacing */
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
  animation: smooth-move 3s ease-in-out infinite; /* Smooth up and down animation */
}

/* Styling for the Font Awesome arrow icon */
#backToTop i {
  font-size: 50px;
  color: #1E97C6; /* Arrow color */
  height: auto;
}

/* Show button when scrolled down */
body.scrolled #backToTop {
  display: block;
}

/* Smooth up and down animation keyframes */
@keyframes smooth-move {
  0%, 100% {
    transform: translateY(0); /* Starting and ending position */
  }
  50% {
    transform: translateY(-10px); /* Move up smoothly */
  }
}
