@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@import url('https://fonts.googleapis.com/css?family=Poppins:400,700,900');
body {
  font-family: Public Sans, sans-serif;
  margin: 0;
  /* background-color: #f0f0f0; */
  min-height: 100vh;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "ui-icons";
  src: url("fonts/uitheme-icons.woff") format("woff2"),
    url("fonts/uitheme-icons.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  /* font-weight: 400; */
}
.font-normal {
  font-weight: 400;
}
.inter {
  font-family: "Inter", sans-serif;
  /* font-weight: 500; */
  font-style: normal;
}
nav .menu a {
  font-size: 14px;
  border-radius: 2px;
  transition: background-color 0.3s;
  padding: 8px 25px;
  /* background: transparent; */
  font-weight: 500;
  display: inline-block;
}

nav .menu a:hover,
nav .menu a:focus-visible{
  background-color: #e7e7e7 !important;
}

.no-hover {
  background-color: transparent;
  padding: 0 !important;
}
/* Wave container */
.wave-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
.nav{
  background-color: rgba(255, 255, 255, 0.9); /* slightly opaque white */
  backdrop-filter: blur(10px);                /* optional glass effect */
  z-index: 10;
}
#wave-canvas {
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}

.container-wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 100%;
}

@media (min-width: 640px) {
  /* sm */
  .container-wrapper {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (min-width: 768px) {
  /* md */
  .container-wrapper {
    max-width: 99.2rem;
  }
}

@media (min-width: 1024px) {
  /* lg */
  .container-wrapper {
    max-width: 114rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 1280px) {
  /* xl */
  .container-wrapper {
    /* max-width: 132rem; */
    max-width: 80rem;
  }
}

.typewriter {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  min-height: 1.5em;
}
.cursor {
  display: inline-block;
  width: 2px;
  background: black;
  margin-left: 4px;
  animation: blink 0.7s steps(1) infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* youtube modal */

.home-video-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: auto;
  margin:  auto;
  cursor: pointer;
}

.home-video-container img {
  width: 100%;
  display: block;
}

.play-button {
  width: 70px;
  height: 70px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: playPulse 1.6s infinite;
  transition: transform 0.3s ease;
}
@keyframes playPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.8); */
  background-color: black;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal iframe {
  width: 80vw;
  height: 45vw;
  max-width: 960px;
  max-height: 540px;
}

/* client swiper
 */
 .swiper .client-swiper{
      width: 100%;
      height: auto;
    }
.client-swiper .swiper-wrapper{
  transition-timing-function: linear;
  height: auto;
}
    .client-swiper .swiper-slide {
      text-align: center;
      font-size: 18px;
      border: 1px solid #EFEFEF;
      border-radius: 16px;
      width: auto;
      max-height: 200px;
      display: flex;
      justify-content: center;
      align-items: center;
      transition-timing-function: ease-in-out;
    }

   .client-swiper  .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .client-swiper {
  position: relative;
  overflow: hidden;
}

.client-swiper::before,
.client-swiper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px; /* adjust fade width */
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.client-swiper::before {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}

.client-swiper::after {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 100%);
}

.current-system 
{
  background-image: url('https://d33m3g343o7hgb.cloudfront.net/neosans-new/images/home/current-bg.png');
 background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.current-system  .current-system-wrap p , .neox-system-wrap p {
 font-family: "Montserrat", sans-serif;
 font-size: 18px;
 line-height: 1.2rem;

}
@media screen and (max-width:480px){
  .current-system  .current-system-wrap p , .neox-system-wrap p {
    font-size: 14px;
  }
}
.bargraph .list-disc li{
  
  font-size: 15px !important;
 font-family: "Montserrat", sans-serif !important;
 color: #6F6F6F;
}
.green {
  color: #096535;
}
@media screen and (max-width:480px){
  .bargraph .list-disc li {
    font-size: 14px;
  }
}

.navbar-scrolled {
    background-color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.3s ease;
  }

  /* .rotating-img {
      position: relative;
      z-index: 2;
     width: 32%;
      display: block;
      margin: 0 auto;
      transition: transform 0.1s ease-out;
    } */
.technology-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 20px 0; */
  min-height: 60vh;
}

#rotateImage {
  width: 40%; 
  transition: transform 0.8s ease;
  transform-origin: center center;
  display: block;
}

@media (max-width: 768px) {
  .technology-wrap {
    padding: 80px 0;
    min-height: auto;
  }

  #rotateImage {
    width: 70%; 
  }
}

/* tech-swiper */

 .swiper .tech-swiper{
      width: 100%;
      height: auto;
    }
.tech-swiper .swiper-wrapper{
  transition-timing-function: linear;
  height: auto;
  align-items: center; /* Ensures slides align properly */
  box-sizing: border-box;
}
    .tech-swiper .swiper-slide {
      text-align: center;
      font-size: 18px;
      border: 1px solid #EFEFEF;
      border-radius: 20px;
      width: auto;
      max-height: 350px;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden; 
  box-sizing: border-box; 
      transition-timing-function: ease-in-out;
    }

   .tech-swiper  .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .tech-swiper {
  position: relative;
  overflow: hidden;
}

.tech-swiper::before,
.tech-swiper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px; /* adjust fade width */
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.tech-swiper::before {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}

.tech-swiper::after {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 100%);
}

.safety p{
  font-weight: 600;
}



    .marker-animate {
      position: relative;
      display: inline-block;
      z-index: 1;
    }

    .marker-animate::before {
      content: '';
      position: absolute;
      inset: 0 0 0 0;
      background-color: #bef264;
      z-index: -1;
     
      transform: scaleX(0);
      transform-origin: left;
      animation: drawMarker 1s ease-out 0.4s forwards;
    }
 @keyframes drawMarker {
      from {
        transform: scaleX(0);
      }
      to {
        transform: scaleX(1);
      }
    }

    .about-container h3 , .SDG h1{
font-weight: 600;
    }
     .about-container h2{
font-weight: 500;
    }


    /* about arrow scroll */


.arrow-wrapper .arrow {
  display: block;
  will-change: transform;
}

.poppins{
 font-family: "Poppins", Sans-serif;
 font-size: 18px !important;
 
}
  .outer-dotted {
    border-style: dotted;
    border-width: 3px;
    border-color: #D1D5DB; 
    border-spacing: 8px; 
  }

  .inner-dotted {
    border-style: dotted;
    border-width: 2px;
    border-color: #D1D5DB;
   
  }