:root {
  --maincolor: #0d8a82;
  --textColor: rgb(0, 0, 0);
  --texttwo: rgb(44, 42, 42);
  ;

}

body {

  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.link-tag {
  color: var(--textBold) !important;
  text-decoration: none;
}

.navbar-toggler {
  width: 20px;
  height: 20px;
  position: relative;
  transition: all 0.5 ease-in-out;
}

::selection {
  background: #084d2446;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  border: none;
  outline: none;
  box-shadow: none;
}


.navbar-toggler span {
  margin: 0;
  padding: 0;
}

.toggler-icon {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 1px;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.middle-bar {
  margin-top: 0;
}

/*when navigation is clicked */
.navbar-toggler .top-bar {
  background-color: var(--textColor);
  margin-top: 0;
  transform: rotate(135deg);
}

.navbar-toggler .middle-bar {
  opacity: 0;
  background-color: var(--textColor);
  filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
  background-color: var(--textColor);
  transform: rotate(-135deg) !important;

}

/*when navbar collapsed */

.navbar-toggler.collapsed .top-bar {
  top: -3px;
  transform: rotate(0deg) !important;
}

.navbar-toggler.collapsed .middle-bar {
  opacity: 1 !important;
  top: 5px;
  filter: alpha(opacity=100)
}

.navbar-toggler.collapsed .bottom-bar {
  margin-top: 7px;
  transform: rotate(0deg) !important;
}


/* navlink style here*/
.nav-link.tech {
  color: #2f2f2f;
  font-size: 1.2rem;
}

.container-fluid.main {
  display: flex;
  justify-content: space-between !important;
  align-items: center;
}


.r {
  border: red 1px solid;
}

.container-fluid.toggle {
  display: flex;
  justify-content: space-between !important;
  align-items: center;
}

#navbarMain {
  margin: 0 !important;
  background: #0d8a82aa !important;
  animation-timeline: scroll();
  animation: fade linear forwards;
  backdrop-filter: blur(20px);
  border-top-right-radius: 0.5em;
}

/* @keyframes fade {
    form{
      background: #fff;
      backdrop-filter: blur(0);
    }to{
      background: #ffffff4e;
      backdrop-filter: blur(20px);
    }
  } */

#navbarMain a:active,
#navbarMain a:hover {
  color: var(--textColor);
}


.child {

  animation: apper linear forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

@keyframes apper {
  from {
    scale: 0.5;
    opacity: 0.5;
  }

  to {
    scale: 1;
    opacity: 1;
  }
}

/* footer section*/
.footar {
  margin-top: 100px;
  position: relative;
  background-color: rgb(30 41 59);
  box-sizing: border-box;
}

.contacticon {
  display: flex;
  justify-content: flex-end;
}

.contacticon i {
  color: var(--maincolor);
  margin: 10px;
  font-size: 1.5em;
}




.footercontent {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.footerlinks {
  color: #f7f4f4;
  margin-bottom: 50px;
  height: 300px;

  width: 400px;
  border-radius: 0.5em;
  text-align: center;

}

.footer h1 {
  color: #0ddc5f;

}

.footerlinks ul li {
  color: #6b6b6b;
  margin-top: 15px;
  text-align: left;
}

.footerlinks ul li {
  list-style: none;
}

.footerlinks.contect ul li i {
  font-size: 0.9em;
}

.animated-text {

  font-size: 12vw;
  color: var(--maingreen);
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}

.animated-text h1 {
  font-size: clamp(4.8rem, 4.5vw, 5rem);
  margin-bottom: 20px;
  background: linear-gradient(to right,
      #ffffff 20%,
      #676869 30%,
      #01cd34 70%,
      var(--maingreen) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  background-size: 500% auto;
  animation: textShine 5s ease-in-out infinite alternate;
}

.ceo-img {
  width: 200px;
}

.ceo-img.rahul {
  position: relative;
  top: -50px;
}

.img {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  width: 200px;
  height: 200px;

}

@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}



/* home css  */
#Home-intro {
  margin-top: 100px;
  /* height: 100vh; */
  width: 100%;
  margin-bottom: 20px;
}

.company-column {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.company-column h1:nth-child(2),
.gradient {
  border-radius: 0.5em;
  background: radial-gradient(circle, #228085 20%, #d53776 41%, #027ad7 96%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

:root {
  --green: #228085;
}

.company-details {
  margin-top: 90px;
}

.company-details h3 {
  color: var(--texttwo);
}

.company-details p {
  font-weight: 500;
  font-size: 1em;
  line-height: 1.8em;
  color: rgba(4, 67, 74, 0.671);
}

.r {
  border: 1px solid red;
}


.contact-btn {
  border: 2px solid transparent;
  background: var(--maincolor);
  font-size: 1.5em;
  font-weight: 350;
  border-radius: 0.5em;
  color: white;
  transition: all 0.2s ease-in-out;
}

.contact-btn .link {
  color: white;
  text-decoration: none;
}

.contact-btn .link:hover {
  color: #0d8a82;
}

.contact-btn:hover {
  background: transparent;
  border-color: #0d8a82;
  color: #0d8a82;
}


/* heresection*/
.heresection h1 {
  font-size: 3em;
  color: white;
}

.heresection {
  margin-top: 100px;
  box-sizing: border-box;
  padding: 15px;
  background-color: #0d8a82;

}

.heresection p {
  color: rgba(47, 46, 46, 0.738);
}

.content {
  margin-top: 80px;
  padding: 10px;
  display: flex;

  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  gap: 10px;

  background: #e4e9f86c;
}

.content-div {
  height: 400px;
  width: 400px;
  border: 3px solid var(--maincolor);
  padding: 5px;
  border-radius: 0.5em;
}

.content-section {
  margin: 20px;
  width: 400px;
}

.content-text .heading {
  padding: 5px;
  text-align: center;

  border-radius: 0.5em;
  background-color: var(--green);
}

.text {
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  border: 2px solid var(--green);
  font-weight: normal;
  border-radius: 0.2em;
}

.other-details span {
  color: #0d8a82;
  font-weight: 500;
  font-size: 1.2em;

}

@media screen and (max-width:780px) {
  .company-details {
    margin-top: -50px;
  }

  .company-column {
    margin-top: 0px;
  }
}

@media screen and (max-width:480px) {
  .heading {
    font-size: 1.5vmax;
  }

  .content {
    padding: 0;
    margin: 0;
  }

  .content-section {
    padding: 0;
    margin: 5px;
  }

}

@media screen and (max-width:720px) {
  .animated-text h1 {
    font-size: clamp(2.8rem, 4.5vw, 5rem);
  }

  #about-img {
    width: 400px;
  }

  .about h1 {
    margin-top: 10px !important;
  }

}