@import url('./feature-work.css');
.green-text {
  color: var(--ea-green);
}

::-webkit-scrollbar {
  width: 1px; /* width of the scrollbar */
  background-color: black; /* background color of the scrollbar track */
}

/* Change the scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background-color: var(--ea-green); /* color of the scrollbar thumb */
  border-radius: 1px; /* roundness of the scrollbar thumb corners */
}

main {
  position: relative;
  z-index: 1;
}

#hero-section {
  height: 100vh;
  overflow: hidden;
  position: relative;
  margin-top: 65px;
}

.hero-slides {
  display: flex;
  flex-wrap: wrap;
  height: 700vh;
  width: 100%;
  transition: transform 0.3s ease;
  background: linear-gradient(180deg, #000417 0%, #000626 100%);
  position: relative;
}
.hero-slides::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/all-pages-first-section/background-img.png);
  background-size: cover;
  /* border: 1px solid red; */
  background-repeat: no-repeat;
  background-position: center center;
  width: 60vw;
  /* width: 100%; */
  height: 100%;
  opacity: 0.5;
  z-index: -1;
}

.hero-slide {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  width: 100%;
  height: 100vh;
  float: left;
  position: relative;
  /* background: linear-gradient(180deg, #000417 0%, #000626 100%); */
  transition: transform 0.3s ease;
}

.hero-left-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 60vw;
  /* background-image: url(../images/index/hero-section/hero-left-background.svg); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  /* border: 1px solid red; */
  padding-left: 150px;
}

.hero-right-container {
  width: 40vw;
  /* border: 1px solid green; */
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
}

.hero-right-container img {
  width: 75%;
}

.hero-left-container-buttons {
  display: flex;
  flex-direction: row;
  padding-top: 30px;
}

.hero-left-container h1 {
  background: var(--ea-green-to-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 6rem;
}

.hero-left-container p {
  color: white;
  font-size: 4rem;
  font-weight: 200;
  margin-top: -6px;
}

.hero-left-button-1 {
  border-radius: 24px;
  background: var(--ea-green-to-blue);
  display: flex;
  justify-content: center;
  height: 59px;
  width: 169px;
  align-items: center;
  text-decoration: none;
  color: white;
}

.hero-left-button-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 59px;
  width: 169px;
  border-radius: 24px;
  text-decoration: none;
  color: var(--ea-green);
  border: 1px solid var(--ea-green);
  margin-left: 40px;
  background: rgba(255, 255, 255, 0.05);
}
.hero-left-button-1:hover {
  background: var(--ea-green);
  color: white;
  border: 1px solid var(--ea-green);
}
.hero-left-button-2:hover {
  background: var(--ea-green-to-blue);
  color: white;
}

#slide1 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, #000417 0%, #000626 100%);
}

.wrap-slide-1 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-image: url(../images/all-pages-first-section/background-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 102vw;
  height: 100%;
  margin: -130px 0 0 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}

.slide-1-button {
  padding-top: 60px;
}

.scroll-indicator {
  color: white;
  display: inline-flex;
  position: absolute;
  bottom: calc(14.44% + 111px);
  right: 25px;
  transition: transform 0.3s ease;
  animation: moveAndReturn 4s infinite;
}

@keyframes moveAndReturn {
  0%,
  100% {
    transform: rotate(90deg) translateX(0px);
  }

  50% {
    transform: rotate(90deg) translateX(30px);
  }
}

.scroll-indicator:before {
  content: '';
  position: relative;
  left: calc(100% + 12px);
  top: 13px;
  width: 60px;
  height: 1px;
  background-color: #fff;
  transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(0deg) scale(1, 1);
  animation: changeColorbefore 2s infinite;
}

.scroll-indicator:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  top: 13px;
  backface-visibility: hidden;
  transition: 750ms cubic-bezier(0.23, 1, 0.32, 1);
}

.scroll-indicator:after {
  left: calc(100% + 68px);
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translateX(0px) translateY(-50%) translateZ(0px) rotate(-45deg) scale(1, 1);
  animation: changeColor 2s infinite;
}

@keyframes changeColor {
  0% {
    border-color: #fff;
    /* Initial color */
  }

  50% {
    border-color: #a272e0;
  }

  100% {
    border-color: #84da84;
    /* Back to initial color */
  }
}

@keyframes changeColorbefore {
  0% {
    background-color: #fff;
    /* Initial color */
  }

  50% {
    background-color: #a272e0;
  }

  100% {
    background-color: #84da84;
    /* Back to initial color */
  }
}

.slide1-logo-container img {
  margin: 10px;
  cursor: pointer;
  padding-right: 20px;
}

#slide1 a {
  border-radius: 24px;
  border: 1px solid var(--ea-green);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  height: 59px;
  width: 169px;
  align-items: center;
  text-decoration: none;
  color: var(--ea-green);
  font-size: 18px;
}

#slide1 a:hover {
  border: 1px solid var(--ea-green);
  background: var(--ea-green);
  color: white;
}

#slide1 h1 {
  background: var(--ea-green-to-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 110px;
  margin-top: 21px;
  text-align: center;
  overflow-wrap: anywhere;
  width: 1120px;
}

#slide1 p {
  color: white;
  /*font-size: 32px;*/
  font-size: 24px;
  line-height: 38px;
  width: 1120px;
  font-weight: 200;
  margin-bottom: -10px;
  overflow-wrap: anywhere;
  text-align: center;
}
.dot-outer {
  height: 23px;
  position: relative;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.name-of-slide-content {
  position: absolute;
  top: 0px;
  width: 50px;
  left: 26px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.name-of-content-para {
  color: white;
  font-size: 9px;
  border: 1px solid #575151;
  padding: 4px;
  background-color: black;
  width: max-content;
}
.name-of-slide-content.active {
  display: block;
  opacity: 1;
}
.name-of-content-para {
  position: relative;
}

.hero-left-align {
  padding-left: 0px;
  margin-top: -95px;
}
.hero-left-align p {
  line-height: 70px;
}

.dots-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 45%;
  left: 3%;
  transform: translate(-50%, -50%);
  width: 40px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0 5px;
  cursor: pointer;
  margin: 7px;
  position: relative;
  transition: all 0.5s ease-in-out;
}

/* .dot:hover {
  width: 10px !important;
  height: 10px !important;
}

.dot.active {
  background-color: rgb(1, 178, 233);
  width: 10px;
  height: 10px;
  transition: all 0.3s ease-in-out;
} */
.dot-outer:hover .dot {
  width: 10px !important;
  height: 10px !important;
}

.dot-outer.active {
  background-color: rgb(1, 178, 233);
  width: 10px;
  height: 10px;
  transition: all 0.3s ease-in-out;
}
.dot-outer {
  cursor: pointer;
}

canvas {
  position: absolute;
  left: -4.5px;
  top: -4.5px;

  z-index: 1000;
  opacity: 1;
  color: white;
}
@keyframes pulsate {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(1, 178, 233, 0.7);
    border: 2px solid rgba(1, 178, 233, 0.7);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(1, 178, 233, 0);
    border: 2px dashed rgba(1, 178, 233, 0.5);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(1, 178, 233, 0.7);
    border: 2px solid rgba(1, 178, 233, 0.7);
  }
}

.dot.move-animation {
  animation: pulsate 0.5s ease-in-out;
}

@keyframes moveDot {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}

.prev-dot-progress {
  animation: prevDotprogress 1s infinite;
}

.prev-dot-progress::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 1px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid #eee;
  box-sizing: border-box;
  animation: rotateOutline 1s linear infinite;
}

@keyframes prevDotprogress {
  from {
    transform: rotate(0deg);
    /* Initial rotation */
  }

  to {
    transform: rotate(360deg);
    /* Rotate the outline */
  }
}

.feature-work {
  background: linear-gradient(180deg, #000417 0%, #000626 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.feature-work-heading {
  text-align: center;
  background: var(--ea-green-to-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 38px;
  font-weight: 300;
  font-style: normal;
  padding-top: 82px;
  padding-bottom: 31px;
}

.feature-work-card-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-work-card-details {
  display: flex;
  justify-content: center;
  border: 1px solid;
  width: 347px;
  height: 227px;
  border-radius: 40px;
  margin: 10px;
}

.feature-work-card {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 347px;
  height: 227px;
  background: white;
  border-radius: 40px;
}

.feature-work-front-details {
  opacity: 1;
  display: flex;
  justify-content: center;
}

.feature-work-front-details img {
  display: flex;
  object-fit: cover;
  width: 100%;
}

.feature-work-back-details {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 347px;
  height: 227px;
  border-radius: 40px;
  text-align: center;
  padding: 30px;
}

.feature-work-back-details h3 {
  font-size: 17px;
  color: var(--ea-green);
}

.feature-work-back-details p {
  font-size: 14px;
}

.feature-work-back-details a {
  text-decoration: none;
  border: 2px solid white;
  text-align: center;
  color: white;
  padding: 5px;
  padding-left: 40px;
  padding-right: 41px;
  border-radius: 5px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  margin-top: 20px;
  background: var(--ea-layer-background);
}

.feature-work-back-details a:hover {
  border: 2px solid;
  border-color: var(--ea-green);
  color: var(--ea-green);
}

/* .feature-work-back-details a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, border-radius 0.3s ease;
  border-radius: 15px;
} */

/* .feature-work-back-details a:hover::before {
  border-image: var(--ea-green-to-blue);
  border-image-slice: 1;
  border-radius: 15px;
} */

.feature-work-back-card-hover-effect {
  transition: 0.3s ease-in-out;
  display: flex;
  opacity: 0.8;
  background: #edebeb;
  background: #444343;
  color: white;
}

.feature-work-tech-carousel {
  position: relative;
  /* width: 239px; */
  padding-left: 15px;
  padding-right: 15px;
}

.carousel-container {
  overflow: hidden;
}

.carousel {
  display: flex;
}

.carousel-images {
  display: flex;
}

.carousel-images img {
  max-width: 100%;
  margin-right: 10px;
  /* Adjust the spacing between images */
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px 10px;
  cursor: pointer;
}

.prev-btn {
  left: -23px;
}

.next-btn {
  right: -23px;
}

.feature-button-of-more-project {
  border-radius: 24px;
  border: 1px solid var(--ea-green);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  height: 59px;
  width: 231px;
  align-items: center;
  text-decoration: none;
  color: var(--ea-green);
  margin-top: 67px;
  margin-bottom: 57px;
}

.feature-button-of-more-project:hover {
  border: 1px solid var(--ea-green);
  background: var(--ea-green);
  color: white;
}

.client-testimonials-section {
  overflow: hidden;
  position: relative;
  padding-bottom: 94px;
}

.client-slider {
  display: flex;
  transition: transform 0.5s ease;
  position: relative;
  align-items: flex-start;
}

.client-item {
  flex: 0 0 100%;
  color: white;
  display: flex;
  box-sizing: border-box;
  flex: 0 0 100%;
  color: white;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.client-message {
  width: 642px;
  border: 1px solid red;
  border-radius: 8px;
  border: 1px solid var(--ea-green);
  background: rgba(1, 210, 166, 0.05);
  padding: 40px;
  text-align: center;
  font-size: 15px;
  font-weight: 200;
  position: relative;
  height: 406px !important;
}

.client-profile-photo {
  position: absolute;
  bottom: -39px;
  left: 43%;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.client-message h2 {
  font-size: 14px;
  font-weight: 400;
  margin-top: 20px;
}

.client-message p {
  font-size: 10px;
  font-weight: 100;
  margin-top: -4px;
}

.client-comments{
  font-size: initial !important;
}

.client-testimonial-heading {
  text-align: center;
  background: var(--ea-green-to-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 38px;
  font-weight: 300;
  font-style: normal;
  padding-top: 82px;
  padding-bottom: 31px;
}

.client-no-slide-available-image {
  cursor: no-drop !important;
  opacity: 0.3;
}

.client-prev-button {
  position: absolute;
  top: 43%;
  left: -78px;
}

.client-next-button {
  position: absolute;
  top: 43%;
  right: -78px;
}

.client-item button {
  background: none;
  border: none;
}
.types-used {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -5px;
}

.types-used div {
  border-radius: 6px;
  border: 1px solid var(--ea-green);
  background: rgba(1, 210, 166, 0.05);
  color: var(--ea-green);
  padding-left: 5px;
  padding-right: 5px;
  margin: 7px 7px;
  font-size: 11px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.happy-client-carousel {
  width: 100%;
  overflow: hidden;
  /* background: linear-gradient(180deg, #000417 0%, #000626 100%); */
}

.happy-client-carousel-content {
  display: flex;
  transform: translate3d(0, 0, 0);
  animation: scrollLeft 90s linear infinite;
}

.happy-client-item {
  flex: 0 0 auto;
  margin-right: 20px;
  cursor: pointer;
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

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

.happy-client-heading {
  text-align: center;
  background: var(--ea-green-to-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 38px;
  font-weight: 300;
  font-style: normal;
  padding-top: 82px;
  padding-bottom: 60px;
}
.happy-client-item:hover .happy-client-carousel-content {
  animation-play-state: paused;
}
.clients-environments {
  background: linear-gradient(180deg, #000417 0%, #000626 100%);
}
.hero-right-container-mobile-width {
  display: none;
}
@media screen and (max-width: 726px) {
  .client-comments{
    font-size: initial !important;
    max-height: 80%;
    overflow-y: auto;
  }
  #slide1 p {
    font-size: 25px;
  }

  #slide1 h1 {
    font-size: 40px;
  }

  .wrap-slide-1 {
    justify-content: flex-start;

    padding-top: 100px;
  }
}

@media screen and (max-width: 726px) {
  #slide1 p {
    font-size: 18px;
    width: auto;
    padding: 10px;
    padding-left: 35px;
    padding-right: 35px;
  }

  #slide1 h1 {
    font-size: 30px;
  }

  .slide1-logo-container img {
    width: 55px;
  }
}

@media screen and (max-width: 990px) {
  .hero-slide {
    flex-direction: column-reverse;
  }

  .hero-right-container {
    height: 34%;
    width: 100%;
  }

  .hero-left-container {
    height: 66%;
    width: 103%;
    overflow: hidden;
    padding-bottom: 33px;
  }

  .hero-right-container img {
    width: 164px;
  }

  .wrap-slide-1 {
    width: 100vw;
  }

  .hero-left-align {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
  }
  .hero-left-container{
    padding-left: 100px !important;
  }
  #slide1 h1 {
    font-size: 80px;
  }

  #slide1 p{
    max-width: 750px;
  }
  
}

@media screen and (max-width: 820px) {
  .hero-left-container p {
    font-size: 3rem;
  }
}

@media screen and (max-width: 1100px) {
  .feature-work-card-details {
    width: 282px;
  }

  .feature-work-card {
    width: 282px;
  }

  .feature-work-back-details {
    width: 282px;
  }
}

@media screen and (max-width: 630px) {
  #slide3 h1,
  #slide3 p,
  #slide4 p,
  #slide5 p,
  #slide6 h1,
  #slide6 p,
  #slide7 p {
    width: auto;
  }

  .hero-left-align {
    align-items: center;
  }

  .hero-left-container p {
    font-size: 21px;
  }

  .hero-left-container h1 {
    font-size: 43px;
  }
}

@media screen and (max-width: 610px) {
  .feature-work-card-section {
    flex-direction: column;
  }
  .hero-left-container {
    padding-left: initial !important;
  }
}

@media screen and (max-width: 488px) {
  .hero-left-container p {
    font-size: 16px;
  }

  .hero-left-container h1 {
    font-size: 35px;
  }
  .hero-left-container {
    justify-content: center;
    align-items: center;
    padding-left: 0px;
  }
}

/* @media screen and (max-width: 388px) {
  .hero-left-container h1 {
    font-size: 27px;
  }
} */

@media screen and (max-width: 780px) {
  .client-message {
    width: 481px;
  }
}

@media screen and (max-width: 635px) {
  .client-next-button {
    right: -46px;
    display: none;
  }

  .client-prev-button {
    left: -46px;
    display: none;
  }
}

@media screen and (max-width: 541px) {
  .client-message {
    width: auto;
  }

  .client-prev-button {
    left: 12px;
    top: auto;
    bottom: -17%;
  }

  .client-next-button {
    right: 12px;
    top: auto;
    bottom: -17%;
  }

  .client-profile-photo {
    left: 39%;
  }
}
@media screen and (max-width: 450px) {
  #slide1 p {
    margin-bottom: 18px;
    text-align: left;
    padding-left: 54px;
    padding-right: 66px;
    margin-top: 0px;
  }
  #slide1 h1 {
    font-size: 40px;
    text-align: center !important;
  }
  .slide1-logo-container {
    width: 250px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #slide1 h1 {
    text-align: left;
    padding-left: 64px;
    padding-right: 37px;
  }
  .slide-1-button {
    height: 50vh;
    margin-top: -95px;
  }
  .wrap-slide-1 {
    justify-content: flex-start;
    padding-top: 76px;
  }
  #slide1 a {
    margin-top: 18px;
  }
  .hero-left-container-buttons {
    display: none;
  }
  .hero-slide {
    flex-direction: column;
  }
  .hero-left-container p {
    font-size: 31px;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
  }
  .hero-slide {
    position: relative;
  }
  .hero-right-container-mobile-width {
    display: flex;
    width: 40vw;
    /* border: 1px solid green; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
    /* height: 70vh; */
  }

  .hero-right-container-mobile-width img {
    /*width: 169px;*/
    height: 144px;
  }
  /* .image-mobile-width-height {
    height: 169px;
  } */

  .hero-left-container {
    justify-content: flex-start;
    padding-top: 150px;
    align-items: center;
    padding-left: 0px;
    height: 100vh;
    width: 100vw;
  }
  .hero-right-container {
    display: none;
  }
  .hero-left-container-buttons-mobile-width {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hero-left-container-buttons-mobile-width a {
    margin-left: auto;
    margin-top: 15px;
  }
  .hero-left-container-buttons-mobile-width a:first-child {
    margin-top: 50px;
  }
  .hero-right-container {
    opacity: 0;
  }
  .dots-container {
    left: 3.5%;
    top: 30%;
  }
  .hero-left-align p {
    line-height: 40px;
  }
  .hero-slides::after {
    width: 100vw;
  }
}
.skip-button {
  position: absolute;
  right: 3rem;
  top: 84vh;
  color: white;
  cursor: pointer;
  z-index: 1000;
}
@media screen and (max-width: 450px) {
  .skip-button {
    right: 1rem;
  }
}

.skip-button {
  display: none;
}
.skip-slider-button {
  position: absolute;
  bottom: 85px;
  right: 32px;
  color: white;
  z-index: 10;
  cursor: pointer;
  transition: color 0.3s;
}

.skip-slider-button:hover {
  color: var(--ea-green);
}

@media screen and (max-width: 500px) {
  .skip-slider-button {
    position: absolute;
    bottom: auto;
    right: 8px;
    color: white;
    z-index: 10;
    top: 76vh;
  }
}

.swiper-pagination .swiper-pagination-bullet {
  background-color: rgb(122, 122, 215);
  background: rgb(243 243 255);
  opacity: 0.8;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: blue;
  background: #01d2a6;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -5px;
  left: 0;
  position: relative;
  width: 100%;
}
.cooll1 {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 2px -1px black;
  border-radius: 20px;
}

.pas {
  padding-top: 50px;
  padding-bottom: 50px;
}
