@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
h1 {
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 400;
}
@media (max-width: 600px) {
  h1 br {
    display: none;
  }
}
h1 span {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  background-size: 500% auto;
  animation: textShine 4s ease-in-out infinite alternate;
}
@keyframes textShine {
  0% {
    background-position: 0% 25%;
  }
  25% {
    background-position: 25% 75%;
  }
  100% {
    background-position: 100% 75%;
  }
}

.light-theme h1,
.light-theme h2,
.light-theme h3,
.light-theme p {
  color: rgb(85, 85, 85);
}
.light-theme span {
  color: #398470;
}
.light-theme h1 span {
  background-image: linear-gradient(to right, rgba(21, 63, 86, 0.6745098039) 20%, #398470 30%, #bdd4e7 70%, #5e7785 80%);
}

.dark-theme h1,
.dark-theme h2,
.dark-theme h3,
.dark-theme p {
  color: rgb(170, 170, 170);
}
.dark-theme span {
  color: #fff;
}
.dark-theme h1 span {
  background-image: linear-gradient(to right, rgba(21, 63, 86, 0.6745098039) 20%, #398470 30%, #bdd4e7 70%, #23333c 80%);
}

h2 {
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 400;
}

h3 {
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 400;
}

p {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
}

.top-badge {
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

.light-theme .top-badge {
  background: rgba(23, 23, 23, 0.04);
  border: 1px solid rgba(71, 71, 71, 0.1);
  color: #777777;
}

.dark-theme .top-badge {
  background: rgba(41, 40, 40, 0.5);
  border: 1px solid rgb(38, 38, 38);
  color: rgba(255, 255, 255, 0.8392156863);
}

.ms-nav {
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ms-nav .logo {
  display: flex;
  align-items: center;
}
.ms-nav .logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 50px;
}
@media (max-width: 600px) {
  .ms-nav .logo img {
    margin-right: 20px;
  }
}
.ms-nav .logo .navbar-brand {
  font-size: clamp(14px, 3vw, 20px);
  padding-right: 10px;
  background: linear-gradient(to right, rgba(21, 63, 86, 0.6745098039) 20%, #398470 30%, #bdd4e7 70%, #23333c 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  background-size: 500% auto;
  animation: textShine 4s ease-in-out infinite alternate;
}
@keyframes textShine {
  0% {
    background-position: 0% 25%;
  }
  25% {
    background-position: 25% 75%;
  }
  100% {
    background-position: 100% 75%;
  }
}
.ms-nav .centered-bar {
  visibility: hidden;
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 32px;
  justify-content: center;
  position: relative;
  background: rgba(23, 23, 23, 0.5);
  padding: 20px 50px;
  border: 1px solid rgb(38, 38, 38);
  border-radius: 30px;
}
.ms-nav .centered-bar a {
  color: rgba(204, 204, 204, 0.8);
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.ms-nav .centered-bar a:hover {
  color: #398470;
}
.ms-nav .toggler {
  display: flex;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
  transition: transform 0.4s ease-in-out; /* Smooth transition for rotation */
  /* When the toggler is hovered */
}
.ms-nav .toggler:hover {
  transform: rotate(45deg); /* Rotate 90 degrees */
}
.ms-nav .toggler-row {
  display: flex;
  align-items: center;
  gap: 7px;
}
.ms-nav .toggler-icon {
  width: 5px;
  height: 5px;
  border-radius: 50%; /* Make them circular */
  position: relative;
  transition: width 0.4s ease, height 0.4s ease; /* Smooth transformation for size change */
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform-origin: center; /* Ensure proper rotation */
}

.light-theme .toggler-icon {
  background-color: #777777;
}

.dark-theme .toggler-icon {
  background-color: rgba(255, 255, 255, 0.8392156863);
}

.pdFullScreenNav {
  width: 100%;
  height: 100%;
  visibility: hidden;
  box-sizing: border-box;
  transform: scale(0.9);
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000000;
  opacity: 0;
  overflow: hidden;
  overflow-y: auto;
  text-align: center;
  transition: visibility 0s 0.5s, opacity 0.5s, transform 0.5s;
}
.pdFullScreenNav .pdFullScreenNav-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
}
.pdFullScreenNav .pdFullScreenNav-top .navbar-brand {
  font-size: clamp(30px, 3vw, 45px);
  padding: 0;
  background: linear-gradient(to right, rgba(21, 63, 86, 0.6745098039) 20%, #398470 30%, #bdd4e7 70%, #23333c 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  background-size: 500% auto;
  animation: textShine 4s ease-in-out infinite alternate;
}
@keyframes textShine {
  0% {
    background-position: 0% 25%;
  }
  25% {
    background-position: 25% 75%;
  }
  100% {
    background-position: 100% 75%;
  }
}
.pdFullScreenNav .pdFullScreenNav-top .navbar .btn {
  align-self: center;
  margin-left: 10px;
}
.pdFullScreenNav .pdFullScreenNav-main {
  display: flex;
  height: calc(100% - 80px);
  justify-content: center;
  align-items: center;
}
.pdFullScreenNav .pdFullScreenNav-main .navbar-content {
  text-align: center;
}
.pdFullScreenNav .pdFullScreenNav-main .navbar-content .navbar-nav {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.pdFullScreenNav .pdFullScreenNav-main .navbar-content .navbar-nav .nav-link {
  padding: 0 0 0 0;
  color: #000;
  font-family: Inter;
  font-size: 28px;
  font-weight: 500;
  display: inline-block;
  color: #000;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 0.5s forwards;
}
.pdFullScreenNav .pdFullScreenNav-main .navbar-content .navbar-nav .nav-link:nth-child(1) {
  animation-delay: 0.1s;
}
.pdFullScreenNav .pdFullScreenNav-main .navbar-content .navbar-nav .nav-link:nth-child(2) {
  animation-delay: 0.2s;
}
.pdFullScreenNav .pdFullScreenNav-main .navbar-content .navbar-nav .nav-link:nth-child(3) {
  animation-delay: 0.3s;
}
.pdFullScreenNav .pdFullScreenNav-main .navbar-content .navbar-nav .nav-link:nth-child(4) {
  animation-delay: 0.4s;
}
.pdFullScreenNav .pdFullScreenNav-main .navbar-content .navbar-nav .nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #000;
  transition: width 0.3s;
}
.pdFullScreenNav .pdFullScreenNav-main .navbar-content .navbar-nav .nav-link:hover::after {
  width: 100%;
}
.pdFullScreenNav .pdFullScreenNav-main .navbar-content .navbar-nav .nav-link.active::after {
  width: 100%;
}
.pdFullScreenNav.show {
  visibility: visible;
  transform: scale(1);
  opacity: 1;
  -webkit-transition-delay: 0s;
  -transition-delay: 0s;
}
.pdFullScreenNav.show .navbar-toggler {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='100' height='100' viewBox='0,0,255.99431,255.99431'%3E%3Cg fill='%23ffffff' fill-rule='nonzero' stroke='none' stroke-width='1' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='' stroke-dashoffset='0' font-family='none' font-weight='none' font-size='none' text-anchor='none' style='mix-blend-mode: normal'%3E%3Cg transform='scale(10.66667,10.66667)'%3E%3Cpath d='M5.70703,4.29297l-1.41406,1.41406l6.29297,6.29297l-6.29297,6.29297l1.41406,1.41406l6.29297,-6.29297l6.29297,6.29297l1.41406,-1.41406l-6.29297,-6.29297l6.29297,-6.29297l-1.41406,-1.41406l-6.29297,6.29297z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  background-color: #000;
  border: 1px solid rgb(38, 38, 38);
  border-radius: 50%;
  padding: 10px;
  transition: all 0.3s ease-in-out;
}

@keyframes flyAway {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(30px, -30px); /* Adjust the values based on how far you want it to "fly away" */
    opacity: 0;
  }
}
@keyframes reappear {
  0% {
    transform: translate(-30px, 30px); /* Start offscreen in the opposite direction */
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.btn {
  padding: 10px 20px;
  background: initial;
  border: initial;
  border-radius: 30px;
}
.btn-ms-primary {
  transition: all 0.3s linear;
  padding: 15px 25px;
}
.btn-ms-email {
  transition: all 0.3s linear;
  padding: 15px 25px;
  position: relative; /* Ensure positioning works for child elements */
}
.btn-ms-email:hover svg {
  animation: flyAway 0.5s forwards, reappear 0.8s 0.5s forwards; /* First it flies away, then reappears */
}
.btn-ms-email svg {
  transition: transform 0.3s ease, stroke 0.3s ease;
}

.light-theme .btn-ms-primary {
  background: #ffffff;
  border: 1px solid rgba(71, 71, 71, 0.1);
  color: #777777;
}
.light-theme .btn-ms-primary:hover {
  border: 1px solid #5cc8ab;
  color: #777777;
}
.light-theme .btn-ms-email {
  background: #ffffff;
  border: 1px solid rgba(71, 71, 71, 0.1);
  color: #777777;
}
@media (max-width: 600px) {
  .light-theme .btn-ms-email {
    color: #181818;
  }
}
.light-theme .btn-ms-email:hover {
  background: #5cc8ab;
  color: #181818;
}
.light-theme .btn-ms-email:hover svg {
  stroke: #181818;
}

.dark-theme .btn-ms-primary {
  background: rgba(41, 40, 40, 0.5);
  border: 1px solid rgb(38, 38, 38);
  color: rgba(255, 255, 255, 0.8392156863);
}
.dark-theme .btn-ms-primary:hover {
  border: 1px solid #398470;
  color: rgba(255, 255, 255, 0.8392156863);
}
.dark-theme .btn-ms-email {
  background: rgba(41, 40, 40, 0.5);
  border: 1px solid rgb(38, 38, 38);
  color: rgba(255, 255, 255, 0.8392156863);
}
@media (max-width: 600px) {
  .dark-theme .btn-ms-email {
    color: #f5f5f5;
  }
}
.dark-theme .btn-ms-email:hover {
  background: #398470;
  color: #f5f5f5;
}
.dark-theme .btn-ms-email:hover svg {
  stroke: #f5f5f5;
}

body {
  background: transparent;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.light-theme .body-wrapper {
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.dark-theme .body-wrapper {
  background-color: #0d0d0d;
  transition: all 0.3s ease-in-out;
}

.ms-hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 0;
  gap: 40px;
  text-align: center;
  overflow: hidden;
  height: calc(100vh - 90px);
  /* Scroll-triggered minimization */
}
.ms-hero-section .ms-animated-circle {
  height: 200px;
}
@media (max-width: 600px) {
  .ms-hero-section .ms-animated-circle {
    height: 80px;
  }
}
.ms-hero-section .framer-container {
  position: relative;
  height: calc(100vh - 360px);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 600px) {
  .ms-hero-section .framer-container {
    height: calc(100vh - 160px);
  }
}
.ms-hero-section .framer-9u8728 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  filter: blur(80px);
  border-radius: 50%;
  width: 700px;
  height: 700px;
  transition: all 0.5s ease;
}
.ms-hero-section .framer-1jpwnvh,
.ms-hero-section .framer-qr3rfw,
.ms-hero-section .framer-om1ftv {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.ms-hero-section .framer-1ibt9zd,
.ms-hero-section .framer-1hr18x0,
.ms-hero-section .framer-1l6bpng {
  width: 100%;
  height: 100%;
  background: conic-gradient(from 180deg at center, rgba(21, 63, 86, 0.6745098039), #398470, #bdd4e7, #23333c);
  border-radius: 50%;
  filter: blur(80px);
}
.ms-hero-section .framer-1jpwnvh {
  animation: rotate1 10s infinite linear;
}
.ms-hero-section .framer-qr3rfw {
  animation: rotate2 12s infinite linear;
}
.ms-hero-section .framer-om1ftv {
  animation: rotate3 14s infinite linear;
}
@keyframes rotate1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rotate2 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes rotate3 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(720deg);
  }
}
.ms-hero-section .minimized {
  transform: translate(-50%, -20%) scale(0.8); /* Moves it off screen and shrinks it */
  opacity: 0.8; /* Fades out */
}

.ms-about-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding: 80px 0;
}
@media (max-width: 600px) {
  .ms-about-section {
    flex-direction: column;
  }
}
.ms-about-section-right {
  flex: 0 0 50%;
  border-radius: 30px;
}
.ms-about-section-right img {
  max-width: 100%;
  filter: contrast(1.1) brightness(0.8) saturate(0.8) sepia(0.2);
}
.ms-about-section-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.light-theme .ms-about-section-right {
  background: rgba(23, 23, 23, 0.04);
  border: 1px solid rgba(71, 71, 71, 0.1);
}

.dark-theme .ms-about-section-right {
  background: rgba(41, 40, 40, 0.5);
  border: 1px solid rgb(38, 38, 38);
}

.ms-technologies {
  display: flex;
  flex-direction: column;
}

.ms-technologies {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.ms-scroll-section {
  padding: 40px 0;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2100px); /* Adjusted for 14 unique slides */
  }
}
.ms-scroll-section .slider {
  border-radius: 20px;
  height: 70px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%; /* Make it responsive */
}
.ms-scroll-section .slider::before, .ms-scroll-section .slider::after {
  content: "";
  height: 70px;
  position: absolute;
  width: 90px;
  z-index: 2;
}
.ms-scroll-section .slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.ms-scroll-section .slider::before {
  left: 0;
  top: 0;
}
.ms-scroll-section .slider .slide-track {
  animation: scroll 30s linear infinite;
  display: flex;
  width: 4200px; /* Adjusted to fit 14 slides twice */
}
.ms-scroll-section .slider .slide {
  height: 80px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #f5f5f5;
}
.ms-scroll-section .slider .slide p {
  font-size: 18px;
}

.light-theme .ms-scroll-section .slider {
  background: rgba(23, 23, 23, 0.04);
  border: 1px solid rgba(71, 71, 71, 0.1);
}
.light-theme .ms-scroll-section .slider::before, .light-theme .ms-scroll-section .slider::after {
  background: linear-gradient(to right, rgb(232, 232, 232) 0%, rgba(255, 255, 255, 0.107) 100%);
}
.light-theme .ms-scroll-section .slider .slide {
  color: #777777;
}

.dark-theme .ms-scroll-section .slider {
  background: rgba(41, 40, 40, 0.5);
  border: 1px solid rgb(38, 38, 38);
}
.dark-theme .ms-scroll-section .slider::before, .dark-theme .ms-scroll-section .slider::after {
  background: linear-gradient(to right, rgb(19, 19, 19) 0%, rgba(255, 255, 255, 0) 100%);
}
.dark-theme .ms-scroll-section .slider .slide {
  color: rgba(255, 255, 255, 0.8392156863);
}

.ms-reason-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 0 80px;
}
@media (max-width: 600px) {
  .ms-reason-section {
    padding: 0 20px;
  }
}
.ms-reason-section .reason-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 600px) {
  .ms-reason-section .reason-cards {
    grid-template-columns: 1fr;
  }
}
.ms-reason-section .reason-cards-card {
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  transition: all 0.3s ease;
}
.ms-reason-section .reason-cards-card .icon {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  background: rgba(62, 61, 61, 0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(38, 38, 38);
  margin-bottom: 10px;
}
.ms-reason-section .reason-cards-card .icon svg {
  width: 60%;
  height: 60%;
}
.ms-reason-section .reason-cards-card .title {
  font-size: 20px;
  font-weight: 500;
  color: #f5f5f5;
}
.ms-reason-section .reason-cards-card .desc {
  font-size: 16px;
  color: #999999;
}
.ms-reason-section .reason-cards-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.ms-reason-section .reason-cards-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.ms-reason-section .reason-cards-card p {
  font-size: 16px;
}

.light-theme .ms-reason-section .reason-cards .reason-cards-card {
  background: rgba(23, 23, 23, 0.04);
  border: 1px solid rgba(71, 71, 71, 0.1);
}
.light-theme .ms-reason-section .reason-cards .reason-cards-card .icon {
  background: rgba(71, 71, 71, 0.1);
  border: 1px solid rgba(71, 71, 71, 0.1);
}
.light-theme .ms-reason-section .reason-cards .reason-cards-card .title {
  color: #777777;
}
.light-theme .ms-reason-section .reason-cards .reason-cards-card .decs {
  color: #181818;
}
.light-theme .ms-reason-section .reason-cards .reason-cards-card:hover {
  box-shadow: #5cc8ab;
}

.dark-theme .ms-reason-section .reason-cards .reason-cards-card {
  background: rgba(41, 40, 40, 0.5);
  border: 1px solid rgb(38, 38, 38);
}
.dark-theme .ms-reason-section .reason-cards .reason-cards-card .icon {
  background: rgb(38, 38, 38);
  border: 1px solid rgb(38, 38, 38);
}
.dark-theme .ms-reason-section .reason-cards .reason-cards-card .title {
  color: rgba(255, 255, 255, 0.8392156863);
}
.dark-theme .ms-reason-section .reason-cards .reason-cards-card .decs {
  color: #f5f5f5;
}
.dark-theme .ms-reason-section .reason-cards .reason-cards-card:hover {
  box-shadow: #398470;
}

.ms-footer {
  padding: 80px;
}
@media (max-width: 600px) {
  .ms-footer {
    padding: 20px;
  }
}
.ms-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ms-footer-logo .logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.ms-footer-logo p {
  margin-bottom: 0;
  font-size: 16px;
  color: #fff;
}
.ms-footer-desc {
  font-size: 14px;
  color: #999999;
  margin-top: 20px;
  padding-right: 20px;
}
@media (max-width: 600px) {
  .ms-footer-desc {
    margin-bottom: 10px;
  }
}
.ms-footer-desc a {
  color: #999999;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ms-footer-desc a:hover {
  color: #398470;
}
.ms-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ms-footer ul li {
  padding-bottom: 16px;
  text-align: end;
}
@media (max-width: 600px) {
  .ms-footer ul li {
    text-align: initial;
  }
}
.ms-footer ul li a {
  color: #999999;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}
.ms-footer ul li a:hover {
  color: #398470;
}/*# sourceMappingURL=style.css.map */