@import url(https://fonts.googleapis.com/css?family=Montserrat);
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #0a001b;
  width: 100%;

  
}

@keyframes move-up6 {
  to {
    transform: translateY(-20px);
  }
}

@keyframes move-down1 {
  to {
    transform: translateY(30px);
  }
}

@keyframes move-up5 {
  to {
    transform: translateY(-20px);
    width: 13vh;
    height: 13vh;
  }
}

@keyframes move-down2 {
  to {
    transform: translateY(30px);
    width: 18vh;
    height: 18vh;
  }
}

@keyframes morph {
  0%,
  to {
    border-radius: 40% 60% 70% 30%/40% 40% 60% 50%;
  }

  34% {
    border-radius: 70% 30% 50% 50%/30% 30% 70% 70%;
  }

  67% {
    border-radius: 100% 60% 60% 100%/100% 100% 60% 60%;
  }
}

@keyframes ani {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.navbar {
  height: 60px;
  margin: -20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  position: sticky;
  top: 10px;
  z-index: 999;
  font-weight: 100;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}

#navbar__logo,
#navbar__logo__mobile {
  display: block;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  max-width: 50%;
  max-height: 50%;
}

#navbar__logo__mobile {
  display: none;
}

#navbar__btn {
  margin-left: auto;
}

.button,
.main__content p {
  color: #fff;
  text-align: center;
}

.button {
  margin-top: 25px;
  text-decoration: none;
  position: relative;
  border: 0;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  width: 8em;
  height: 3em;
  line-height: 2em;
  background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
  background-size: 300%;
  border-radius: 15px;
  z-index: 1;
}

.button:hover {
  animation: ani 8s linear infinite;
  border: 0;
}

.button:before {
  content: "";
  position: absolute;
  top: 0px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  background: #170630;
  background-size: 400%;
  border-radius: 12px;
  transition: 1s;
  height: 3em;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.button:hover::before {
  filter: blur(20px);
}

.button:active {
  background: linear-gradient(32deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
}

@media screen and (max-width: 768px) {
  /*responsive navbar for mobile devices*/
  .navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    z-index: 1;
    width: 80%;
    max-width: 1300px;
    padding: 0;
  }

  #navbar__logo {
    display: none;
  }

  #navbar__logo__mobile {
    display: block;

  }

  .button {
    font-size: 0.8rem;
    width: 7em;
    top: -10px;
  }
}

@media screen and (max-width: 1024px) {


  .button {

    top: -8px;
  }
}

/* Form popup background */
.form__popup__bg {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.form__popup__bg.is-visible {
  opacity: 1;
  visibility: visible;
  transition: backdrop-filter 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Form container */
#form {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  width: 90%;
  max-width: 700px;
  padding: 50px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 20px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.form__popup__bg.is-visible #form {
  transform: scale(1);
}

/* Close button */
.form__close__button {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  background: none;
  font-size: 240px;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}

/* Rest of your existing form styles */
#form .form__title {
  color: #fff;
  font-size: 2em;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 30px;
}

#form button,
#form input {
  outline: 0;
  border-radius: 12px;
}

#form .form__input,
#form textarea {
  border: 1px solid #dbd5d51f;
  padding: 8px 14px;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

#form textarea {
  border-radius: 12px;
  height: 100px;
  resize: none;
  outline: 0;
  color: #fff;
}

#form button {
  align-self: flex-end;
  padding: 10px 20px 10px 20px;
  border: 0;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  background-color: white;
}

#form button:hover {
  background-color: #95ffc5;
  transition: background-color 0.7s ease;
}

/*Main part css*/

.main__content {
  position: relative;
  inset: 0;
  padding: 0 100px;
  z-index: 2;
  transition: transform 0.5s ease-in-out;
  margin: 0 auto;
  
}

.main__content p {
  margin-top: 250px;
  font-size: 2rem;
  font-weight: 600;
}

/* Enhanced Hero Styling */
.hero__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 200px;
}


.hero__button,
.main__content {
  position: absolute;
  align-items: center;
}

.hero__button {
  margin-top: 50px;
  display: flex;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  position: relative;
  border: 0;
  width: 7.5em;
  height: 3em;
  line-height: 2em;
  background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
  background-size: 300%;
  border-radius: 15px;
  z-index: 1;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

#cta {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}

.hero__button:hover {
  animation: ani 8s linear infinite;
  border: 0;
}

.hero__button:before {
  content: "";
  position: absolute;
  top: 0px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  background: #170630;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-size: 400%;
  border-radius: 12px;
  transition: 1s;
  height: 3em;
}

.hero__button:hover::before {
  filter: blur(20px);
}

.hero__button:active {
  background: linear-gradient(32deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
}

.hero__button svg {
  margin-right: 0;
  width: 16px;
  height: 16px;
  color: currentColor;
}

.hero__button span,
.hero__button svg {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__button:hover svg {
  transform: rotate(90deg);
}

.hero__button:hover span {
  transform: translateX(-5px);
}

.main__container {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* Three columns: left (1st card), center (2nd card), right (3rd card) */
  gap: 1rem; /* Space between columns */
  margin: 0 auto;
  height: 140vh;
  min-height: 1000px;
  z-index: 1;
  width: 100%;
  padding: 0;
  position: relative;
  scroll-snap-align: start;
}

.extras__card {
  background: radial-gradient(
    circle,
    rgba(30, 10, 60, 1) 0%,
    rgba(10, 0, 27, 1) 100%
  );
  margin: 1rem;
  height: 50vh;
  width: 20vw;
  min-width: 300px;
  max-width: 35vw;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative; /* Keep it relative for easy positioning */
  color: rgb(88 199 250/0%);
  transition: transform 0.5s ease-in-out;
  overflow-x: hidden;
  box-shadow: 0 -40px 70px rgba(255, 255, 255, 0.1); /* Subtle white glow at the top */
}

/* Position each child explicitly */
.extras__card:nth-child(1) {
  margin-left: 60%;
  margin-top: 600px;
  grid-column: 1; /* Left column */
  justify-self: start; /* Align to the start of the grid cell */
  z-index: 0;
}

.extras__card:nth-child(2) {
  margin-top: 500px;
  grid-column: 2; /* Center column */
  justify-self: center; /* Center within the grid cell */
  z-index: 1;
}

.extras__card:nth-child(3) {
  margin-right: 60%;
  margin-top: 600px;
  grid-column: 3; /* Right column */
  justify-self: end; /* Align to the end of the grid cell */
  z-index: 0;
}

/* Rest of the styles remain the same */
.extras__card h2,
.extras__card p {
  color: #fff;
  position: absolute;
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  transition: filter 0.7s ease;
}

.extras__card h2 {
  font-size: 1.4rem;
  top: 47%;
}

.extras__card p {
  font-size: 1rem;
  top: 70%;
  font-weight: 300;
}

.extras__card svg {
  position: absolute;
  inset: 0;
  left: 35%;
  top:12%;
  max-width: 30%;
  color: white;
}

#card__left img {
  position: absolute;
  inset: 0;
  left: 37%;
  top: 15%;
  max-width: 25%;
}

.blur {
  filter: blur(5px);
}

.companies__container {
  display: grid;
  margin: 0 auto;
  height: 130px;
  z-index: 1;
  width: 100%;
  padding: 0 20px;
  position: relative; /* No need for absolute positioning */
  margin-bottom: 100px;
  margin-top: 100px;
}

.scroller {
  width: 100%;
  height: 200px;
  position: absolute;
}

.scroller img {
  width: 170px;
  height: 100px;
  object-fit: cover;
  opacity: 0.9;
  /* Add iOS Safari optimizations */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
  /* Add iOS Safari compatibility */
  -webkit-animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
  will-change: transform;
  /* Force hardware acceleration on iOS */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}


.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 45s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

@-webkit-keyframes scroll {
  to {
    -webkit-transform: translate(calc(-50% - 0.5rem));
    transform: translate(calc(-50% - 0.5rem));
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
  max-width: 80rem;
  z-index: 1;
  margin: 0 auto;
  padding: 75px 10%;
  position: relative;
  scroll-snap-align: start;
}

/* Card Styling */
.stats__card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); 
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  aspect-ratio: 1 / 1; /* Maintain square aspect ratio */
  width: 100%;
}


.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  left:1.5rem;
  position: relative;
  width: 60%;

}

.icon-wrapper {
  background: rgba(255, 255, 255, 0.1);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-wrapper svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.9);
}

/* Card Body (for the number) */
.card-body {
  width: 100%;
}

.stat-number {
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-align: left;
  left:1.5rem;
  position: relative;
}

/* Responsive Breakpoints */
@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw; /* Full viewport width */
  height: 250vh; /* Full viewport height */
  position: relative; /* Make .stack a positioning context */
  
}

.stack__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50vw;
  height: 50vh;
  position: -webkit-sticky;
  position: sticky;
  top: 5%;
  font-size: 10rem;
  margin: 20px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 1;
  
}



.stack__card:nth-child(2) {
  top: 7%; /* Slightly lower than the first card */
  z-index: 2; /* Ensure this card is above the first card */
}

.stack__card:nth-child(3) {
  top: 9%; /* Slightly lower than the second card */
  z-index: 3; /* Ensure this card is above the second card */
}

.stack__card:nth-child(4) {
  top: 11%; /* Slightly lower than the third card */
  z-index: 4; /* Ensure this card is above the third card */
}

.stack__card:nth-child(5) {
  top: 13%; /* Slightly lower than the fourth card */
  z-index: 5; /* Ensure this card is above the fourth card */
}

.stack__card p {
  font-weight: 400;
  margin: 0px 60px;
  margin-bottom: 40px;
  font-size: 1.3rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.8); /* Added for better visibility */
}

.stack__card h1 {
  text-align: left;
  margin: 0px 60px;
  font-weight: 300;
  font-size: 1.5rem;
  color: rgba(191, 207, 255, 0.8);
  display: block; /* Ensures block-level stacking */
}

.stack__card h2 {
  text-align: justify;
  margin: 0px 60px;
  font-weight: 300;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  display: block; /* Ensures block-level stacking */
}

/* Add more nth-child selectors if you have more cards */

#cyan,
#purple {
  position: fixed;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  -webkit-filter: blur(100px);
  filter: blur(100px);
  will-change: transform;
  transform: translateZ(0);
  perspective: 1000;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
  z-index: -999; /* Much lower z-index */
  pointer-events: none; /* This prevents click interference */
  animation: pulse 8s infinite ease-in-out;
}

#cyan {
  background: rgba(45, 208, 245, 0.4);
  opacity: 0.3;
  right: -200px;
  top: -200px;
}

#purple {
  background: rgba(235, 135, 255, 0.4);
  opacity: 0.3;
  left: -200px;
  bottom: -200px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}







@media screen and (max-width: 768px) {
  /*responsive page design for mobile devices*/

  .hero__content {
    max-width: 100%;
    padding: 1rem 0.5rem;
  
  }

  .hero__title {
    font-size: 1.5rem;
    margin-top: 150px;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.5;
    padding: 0 0.5rem;
    max-width: 95%;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
    overflow-wrap: break-word;
  }



  .button1 {
    width: auto;
    height: auto;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.8rem;
    gap: 6px;
  }

  .button1::before {
      height: 4em;
      top: -3px;

  }

  .svg-icon {
    width: 20px;
    height: 20px;
  }

  .main__content {
    padding: 0 30px;

  }

  .main__content p {
    margin-top: 180px;
    font-size: 3.5vw;
  }

  .scroller {
    top: -20%;
  }

  .scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
  }

  .scroller img {
    width: auto;
    max-width: 100%;
    height: 120px;
    object-fit: contain;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  .main__container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 138vh;
    min-height: 1100px;
    height: auto;
    aspect-ratio: 1/2.2;
    
  }

  .extras__card {
    width: 70%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 2 / 1.2;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
    border-radius: 22px;
    position: absolute;
    margin: auto;
  }

  .extras__card:nth-child(3) {
    top: 400px;
    margin: 0;
    z-index: 0;
  }

  .extras__card:nth-child(2) {
    top: 500px;
    margin: 0;
    z-index: 1;
  }

  .extras__card:nth-child(1) {
    top: 600px;
    margin: 0;
    z-index: 2;
  }

  .extras__card h2 {
    color: #fff;
    width: 40%;
    font-size: 3vw;
    position: absolute;
    top: 28%;
    left: 60%;
    text-align: right;
    transition: filter 0.7s ease;
  }

  .extras__card p {
    position: absolute;
    font-size: 2.5vw;
    width: 80%;
    top: 70%;
  }

  .extras__card svg {
    position: absolute;
    width: 17%;
    top: 13%;
    left: 20%;
  }

  #card__left img {
    position: absolute;
    width: 12%;
    top: 20%;
    left: 21%;
  }
  .stack {
    height: 150vh;
    position: relative;
    overflow: visible;
  }

  .stack__card {
    width: 85vw;
    max-height: 300px;
  }

  .stack__card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    font-weight: 400;
    margin: 0px 30px; /* 20px top and bottom, 40px left and right */
    margin-bottom: 10px;
  }

  .stack__card h1 {
    font-size: 0.9rem;
    margin: 0px 30px; /* 20px top and bottom, 40px left and right */
  }

  .stack__card h2 {
    font-size: 0.7rem;
    margin: 0px 30px; /* 20px top and bottom, 40px left and right */
  }


  html {
    scroll-snap-type: none;
    scroll-behavior: smooth;
  }

  #cyan {
    width: 120vh;
    top: 30%;
    right: 50%;
    opacity: 0.3;
  }

  #purple {
    width: 130vh;
    bottom: 50%;
    left: 30%;
    opacity: 0.3;
  }

    .stats-grid {
    gap: 12px;
    padding: 15px 20px;
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    max-width: 550px;
  }

  .stats__card {
    min-height: 100px;
    padding: 0.75rem;
    aspect-ratio: 1 / 1;
  }

  .card-title {
    font-size: 0.65rem;
    left: 0.5rem;
    width: 70%;
    line-height: 1.2;
  }

  .icon-wrapper {
    width: 1.75rem;
    height: 1.75rem;
  }

  .icon-wrapper svg {
    width: 12px;
    height: 12px;
  }

  .stat-number {
    font-size: 2.5rem;
    left: 0.5rem;
    bottom: -0.5rem;
  }
  

}




@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /*responsive card design for tablets*/

    .hero__title {
    font-size: 1.8rem;

  }

  .main__content p {
    margin-top: 200px;
    font-size: 2.5vw;
  }

  .companies__container {
    height: 220px;
    
  }

  .scroller {
    width: 100%;
    height: 250px;
    top: -10%;

  }

  .scroller img {
    width: auto;
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  .scroller__inner {
    gap: 4rem;
  }

  .main__container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 150vh;
    min-height: 108vh;
    height: auto;
    aspect-ratio: 1/2.2;
  }

  .extras__card {
    width: 100%;
    height: 300px;
    min-width: 550px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
    border-radius: 30px;
    position: absolute;
    margin: auto;
  }

  .extras__card:nth-child(3) {
    top: 30%;
    margin: 0;
    z-index: 0;
  }

  .extras__card:nth-child(2) {
    top: 37%;
    margin: 0;
    z-index: 1;
  }

  .extras__card:nth-child(1) {
    top: 44%;
    margin: 0;
    z-index: 2;
  }

  .extras__card h2 {
    color: #fff;
    width: 50%;
    font-size: 1.3rem;
    position: absolute;
    top: 30%;
    left: 60%;
    text-align: right;
    transition: filter 0.7s ease;
  }

  .extras__card p {
    position: absolute;
    font-size: 1rem;
    width: 80%;
    top: 70%;
  }

  .extras__card svg {
    position: absolute;
    width: 15%;
    top: 20%;
    left: 20%;
  }

  #card__left img {
    position: absolute;
    inset: 0;
    left: 22%;
    top: 20%;
    width: 11%;
  }

  .stack {
    height: 200vh;
    position: relative;
    overflow: visible;
  }

  .stack__card {
    width: 70%;
    height: 50vh;

  }

  .stack__card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 400;
    margin: 0px 60px; /* 20px top and bottom, 40px left and right */
    margin-bottom: 30px;
    text-align: justify;
  }






  html {
    scroll-snap-type: none;
    scroll-behavior: smooth;
  }

  /* Tablet: 3-column layout with proper sizing */
  .stats-grid {
    gap: 25px;
    padding: 30px 40px;
    margin-top: -5%;
    margin-bottom: 10%;
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
  }

  .stats__card {
    min-height: 160px;
    padding: 1.5rem;
    aspect-ratio: 1 / 1;
  }


  .card-title {
    font-size: 1rem;
    left: 1rem;
    width: 60%;
  }

  .icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
  }

  .icon-wrapper svg {
    width: 16px;
    height: 16px;
  }

  .stat-number {
    font-size: 4.5rem;
    left: 1rem;
    bottom: -1rem;
    font-weight: 600;;
  }

  .discord__container {
    display: grid;
    overflow: hidden;
    height: 50%;
  }

  .discord {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 300px;
    max-width: 250px;
  }

  .discord__text {
    top: 30px;
    height: 300px;
    width: 100%;
    left: 20px;
    text-align: center;
    word-wrap: break-word;
  }

  .discord__text h1 {
    font-size: 1rem;
    font-weight: 800;
  }

  .discord__text a {
    font-size: 0.8rem;
  }

  .circle {
    width: 10vh;
    height: 10vh;
    background: radial-gradient(#b0c1fe, #5b6fb9);
    border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
    animation: morph 3s linear infinite;
    z-index: -1;
  }

  .security__container {
    display: grid;
    overflow: hidden;
    height: 50%;
  }

  .security {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 300px;
    max-width: 250px;
  }

  .security__text {
    top: 30px;
    height: 300px;
    width: 100%;
    text-align: center;
    word-wrap: break-word; /* Add this line */
    margin: auto;
  }

  .security__text h1 {
    position: relative;
    font-size: 1rem;
    font-weight: 800;
  }

  .security__text a {
    font-size: 0.8rem;
  }

  .circle2 {
    background: repeating-linear-gradient(48deg, #9c1bbf 0, #ffacde 100%);
    animation: move-up6 2s ease-in infinite alternate-reverse;
    z-index: -1;
  }

  .circle2:nth-child(3) {
    border-radius: 36% 64% 58% 42%/36% 36% 64% 64%;
    width: 5vh;
    height: 7vh;
    top: 45px;
    left: 120px;
  }

  .circle2:nth-child(2) {
    border-radius: 37% 63% 69% 31%/57% 55% 45% 43%;
    width: 5vh;
    height: 10vh;
    bottom: 60px;
    right: 120px;
    animation-name: move-down1;
  }

  .website__container {
    display: grid;
    overflow: hidden;
    height: 50%;
  }

  .website {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 300px;
    max-width: 250px;
  }

  .website__text {
    top: 30px;
    height: 300px;
    width: 100%;
    left: 20px;
    text-align: center;
    word-wrap: break-word; /* Add this line */
  }

  .website__text h1 {
    font-size: 1rem;
  }

  .website__text a {
    font-size: 0.8rem;
  }

  .circle3 {
    background: repeating-linear-gradient(48deg, #9c1bbf 0, #ffacde 100%);
    animation: move-up6 2s ease-in infinite alternate-reverse;
    z-index: -1;
  }

  .circle3:nth-child(3) {
    background: #870fff;
    width: 3vh;
    height: 3vh;
    bottom: 150px;
    left: 100px;
  }

  .circle3:nth-child(2) {
    background: #00ffdc;
    width: 6vh;
    height: 6vh;
    top: 90px;
    left: 60px;
    animation: move-down2 3s ease-in-out infinite alternate-reverse;
  }

  @keyframes move-down2 {
    to {
      transform: translateY(30px);
      width: 9vh;
      height: 9vh;
    }
  }
  #scroll-right {
    bottom: 30%;
    margin-right: 100px;
    transform: rotate(90deg);
  }

  #scroll-left {
    margin-left: 100px;
    bottom: 30%;
    transform: rotate(-90deg);
  }

  #cyan {
    width: 120vh;
    top: 30%;
    right: 50%;
    opacity: 0.3;
  }

  #purple {
    width: 130vh;
    bottom: 50%;
    left: 30%;
    opacity: 0.3;
  }
}

footer {
  z-index: 500;
  width: 100%;
  height: auto;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 2vw;
  position: relative;
}

.footer-content {
  text-align: center;
  max-width: 600px;
}

.footer-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-content p {
  font-size: 0.9rem;
  margin: 0.5rem 0;
  color: #818181;
  line-height: 1.4;
}

.footer-content img {
  width: 30%;
  margin: auto;
}

@media screen and (max-width: 700px) {
  .footer-content img {
    width: 50%;
    margin: auto;
  }
}


@media screen and (max-width: 1900px) {
  #large__review {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 1500px) {
  #large__review {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1000px) {
  #large__review {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 768px) {
  #large__review {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 600px) {
  #large__review {
    font-size: 0.65rem;
  }
}


a {
  text-decoration: none;
  color: inherit;
}

.link {
  width: calc(4rem);
  height: calc(4rem);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  border-radius: calc(0.1 * 4rem);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1000px) {
  :root {
    --m: 3rem;
  }
}

@media screen and (max-width: 700px) {
  footer {
    padding: 2rem 5vw;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  
  .footer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .footer-content p {
    font-size: 0.8rem;
    margin: 0.5rem 0;
  }
}

/* Service Card Styles */
.service__card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service__card .number {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    z-index: 0;
    line-height: 1;
}

.service__card .icon__container {
    position: relative;
    z-index: 1;
}

.service__card .content {
    position: relative;
    z-index: 1;
}

.service__card .detailed__overview {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.service__card:hover .detailed__overview {
    opacity: 1;
    transform: translateY(0);
}

/* Services Section Styles */
.services__section {
    background-color: #0a001b;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1rem;
    padding-left: 1.8rem;
}

@media (min-width: 640px) {
    .services__section {
        padding: 1.5rem;
    }


}

@media (min-width: 768px) {
    .services__section {
        padding: 6rem;
    }

    
}

.services__container {
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 850px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (min-width: 1200px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Updated Service Card Styles */
.service__card {
    background: radial-gradient(
        circle,
        rgba(30, 10, 60, 0.9) 0%,
        rgba(10, 0, 27, 0.9) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 -40px 70px rgba(255, 255, 255, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 350px;
    margin: 0 auto;
}

.service__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}



.service__card .icon__container {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    border-radius: 9999px;
}

.service__card .icon__container svg {
    height: 2rem;
    width: 2rem;
    stroke-width: 2;
}

/* Icon-specific colors */
.service__card .icon__container {
    background-color: #e0f2fe;
}

.service__card .icon__container svg {
    color: #0284c7;
}

.service__card .microservices__icon {
    background-color: #e0e7ff;
}

.service__card .microservices__icon svg {
    color: #4f46e5;
}

.service__card .cloud__icon {
    background-color: #d1fae5;
}

.service__card .cloud__icon svg {
    color: #059669;
}

.service__card .devops__icon {
    background-color: #fef3c7;
}

.service__card .devops__icon svg {
    color: #d97706;
}

.service__card .api__icon {
    background-color: #fee2e2;
}

.service__card .api__icon svg {
    color: #dc2626;
}

.service__card .ai__icon {
    background-color: #f3e8ff;
}

.service__card .ai__icon svg {
    color: #7c3aed;
}

.service__card .content {
    position: relative;
    z-index: 1;
    
}

.service__card .content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@media screen and (max-width: 640px) {
  .service__card .content h3 {
    font-size: 1rem;
  }

  .service__card .content p {
    font-size: 0.8rem !important;
  }

  .service__card .detailed__overview h4 {
    font-size: 0.9rem !important;

  }

  .service__card .detailed__overview p {
    font-size: 0.8rem !important;

  }

}

.service__card .content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.6;
 
}

.service__card .read__more__btn {
    font-weight: 600;
    color: #60a5fa;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    padding: 0;
    font-family: inherit;
}

.service__card .read__more__btn:hover {
    color: #93c5fd;
}

/* Button-specific colors */
.service__card .microservices__btn {
    color: #818cf8;
}

.service__card .microservices__btn:hover {
    color: #a5b4fc;
}

.service__card .cloud__btn {
    color: #34d399;
}

.service__card .cloud__btn:hover {
    color: #6ee7b7;
}

.service__card .devops__btn {
    color: #fbbf24;
}

.service__card .devops__btn:hover {
    color: #fcd34d;
}

.service__card .api__btn {
    color: #f87171;
}

.service__card .api__btn:hover {
    color: #fca5a5;
}

.service__card .ai__btn {
    color: #a78bfa;
}

.service__card .ai__btn:hover {
    color: #c4b5fd;
}

.service__card .detailed__overview {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle,
        rgba(30, 10, 60, 0.95) 0%,
        rgba(10, 0, 27, 0.95) 100%
    );
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: none;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.service__card .detailed__overview h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.service__card .detailed__overview p {
  font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Icon wrapper for main service cards */
.icon__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.extras__card:hover .icon__wrapper {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
