/* Fonts */
/* default */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');

/* h1 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@800;900&display=swap');

/* test */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


/* Page Setup */
html, body {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overflow-y: scroll;
  height: 100vh;
}

section {
  scroll-snap-align: start;
  height: 100vh;
}


body {
  /* scroll-behavior: smooth !important; */
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  background-color: black;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.scrollCheck {
  position: relative;
  top: 50%;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: rgba(0, 255, 255, 0);
  transform: translate(0, -50%);
}

section {
  scroll-behavior: smooth !important;
  height: 100vh;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

.section-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

div.content {
  width: 100%;
  height: 100vh;
}

::-webkit-scrollbar {
  width: 0px;
}

/* navbar */

nav {
  height: 50px;
  position: fixed;
  left: 50%;
  transform: translate(-50%);
  z-index: 999;
  width: 100%;
}

nav img {
  width: 50px;
  margin-top: 10px;
  display: none;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
  /* Center the text */
}

li {
  display: inline-block;
  margin-right: 20px;
}

li a {
  display: block;
  font-size: 20px;
  font-weight: 400;
  padding: 15px;
  text-decoration: none;
  color: #2b2b2b;
  /* color: #ffffff; */
  opacity: 0.8;
  transition: 0.33s;
  user-select: none;
  cursor: pointer;
}

.white {
  color: #ffffff;
}

.black {
  color: #2b2b2b;
}

li a:hover {
  font-weight: bold;
  opacity: 1;
  ;
  transition: 0.33s;

}

/* page 1 */
div.text {
  transform: translateY(-50%);
  position: relative;
  top: 35%;
  text-align: center;
  margin: auto;
}

h1 {
  font-size: 100px;
  font-weight: 1000;
  font-family: 'Inter', sans-serif;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: -75px;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to top right, #000000, rgb(102, 102, 102));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 span {
  opacity: 0;
  background: linear-gradient(to top right, #00000000, rgba(161, 161, 161, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 1s;
}

.devdialAnimation {
  opacity: 1;
  transform: scale(0.5);
  background: linear-gradient(to top right, #000000, rgb(161, 161, 161));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 1s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fade-in {
  opacity: 1;
  visibility: visible;
  transition: opacity 1s 1.5s;
}

h2 {
  opacity: 0;
  visibility: hidden;
}

/* loading */

/* loading screen */
/* CSS for the loading screen */
#loading-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  flex-direction: column;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f1f1f1;
  z-index: 9999;
  opacity: 1;
  transition: 0.5s;
}

.loader {
  border: 4px solid #f3f3f3;
  /* border-top: 4px solid #3498db; */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

.loader {
  display: block;
  --height-of-loader: 4px;
  --loader-color: #0071e2;
  width: 130px;
  height: var(--height-of-loader);
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.loader::before {
  content: "";
  position: absolute;
  background: var(--loader-color);
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  border-radius: 30px;
  animation: moving 1s ease-in-out infinite;
  ;
}

@keyframes moving {
  50% {
    width: 100%;
  }

  100% {
    width: 0;
    right: 0;
    left: unset;
  }
}

#onload-content {
  display: none;
}

.loading {
  opacity: 1;
  transition: 1s;
}

.loaded {
  opacity: 0;
  transition: 1s;
}

/* page 1+ */
.btn {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 0;
  margin-bottom: calc(10vh);
}

button.startBtn {
  width: 300px;
  height: 50px;
  border-radius: 16px;
  border: 0;
  background-color: #3d3d3f;
  color: #ffffff;
  font-size: 22px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.33s;
}

button:hover {
  background-color: #8404b1;
  transition: 0.33s;

}

button {
  user-select: none;
}

.text2 {
  width: 500px;
  text-align: center;
  margin: auto;
  font-weight: 400;
  font-size: 18px;
  /* letter-spacing: 1px; */

}


/* scroll */
div.scroll {
  width: 50px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 75%;
  transform: translate(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.main__action {
  /* display: none; */
  animation: scroll-down 3s infinite;
  width: 50px;
  height: 50px;
}

.main__scroll-text {
  color: rgba(28, 28, 30, 1);
}


/* Animate scroll icon */
@keyframes scroll-down {

  0%,
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }

  35% {
    transform: translateY(1rem);
    opacity: 0;
  }

  70% {
    transform: translateY(-1rem);
    opacity: 0;
  }
}

/* page 2 */

div.blocks {
  position: relative;
  top: 20%;
  left: 25%;
  transform: translate(-25%, -20%);
  width: calc(50vw - 100px);
}

.headingAbout {
  font-size: 48px;
  font-weight: bold;
  top: 12.5%;
  left: 25%;
  position: relative;
  transform: translate(-25%, -12.5%);
  width: calc(50vw - 100px);
  margin: 0;
}

.block {
  display: flex;
  align-items: center;
  height: calc(100px);
  font-weight: bold;
  border-radius: 10px;
  width: 75%;
}


.block:hover {
  cursor: pointer;
  background: linear-gradient(to right, #d0d0db36, #d0d0db07);
}

.activeBlock {
  background: linear-gradient(to right, #d0d0db73, #d0d0db0a);
}



.blockText p {
  margin: auto;
  margin-top: 20px;
  line-height: 1.5;
}

.block p {
  font-size: min(1vw,28px);
  font-weight: 500;
  transition: 0.35s;
  margin-left: 5px;
  user-select: none;
}

.block2 {
  position: absolute;
  top: 0;
  right: -25vw;
  text-align: left;
  visibility: hidden;
  /* Changed from display: none */
  opacity: 0;
  width: 75%;
  background-color: #ffffff;
  border-radius: 25px;
  height: 40vh;
  transition: 0.5s;
  padding: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.showBlock {
  visibility: visible;
  /* Changed from display: block */
  transition: 0.5s;
  opacity: 1;
}


.blockText {
  margin: auto;
  width: 90%;
  height: 40vh;
  overflow-y: scroll;
}

@media screen and (max-height: 800px) {
  .block2 {
    height: 50vh;
  }



  .blockText {
    height: 50vh;
  }
}


.block2 p {
  font-size: min(0.9vw, 28px);
  margin-bottom: 30px;
  line-height: min(1.75vw, 50px);
  font-weight: normal;

}

div.mobileBlocks {
  display: none;
}

div.mobileBlock {
  width: 90vw;
  height: auto;
  margin: auto;
  background-color: #ffffff;
  border-radius: 25px;
  padding: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobileBlock p {
  margin: 10px;
}

div.servicesMobile {
  width: 90vw;
  height: 350px;
  background-color: #ffffff;
  border-radius: 25px;
  padding: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  align-items: center;
  overflow-x: auto;
  gap: 100px;
}

.serviceMobile {
  height: 100%;
  display: block;
  width: auto;
  height: auto;
  position: relative;
}

.serviceMobile img {
  width: auto;
  height: 30vh;
  position: relative;
  left: 50%;
  transform: translate(-50%)
}

.serviceMobile p {
  text-align: center;
  margin: 0;
}

.blockHeadingMobile {
  text-align: center;
  font-size: 24px;
}

/* services */

.services {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.75vw;
  max-height: max(175px,20vh);
}

.service {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 25px;
  width: 25%;
  height: auto;
}

div.serviceImg {
  height: 50%;
}

.serviceImg img {
  width: 10vh;
  height: 10vh;
  position: relative;
  left: 50%;
  transform: translate(-50%);
}

.serviceText p {
  white-space: nowrap;
  margin-top: 10px;
  font-size: 0.8vw;
}

/* packages page 3 */
div.header3 {
  margin: 0;
  position: relative;
  top: 10%;
  text-align: center;
  left: 50%;
  transform: translate(-50%, -10%);
}

div.header3 p {
  margin: 0;
  color: white;
  /* font-weight: 600; */
  font-size: 48px;
  letter-spacing: 1.5px;
}

/* website plan cards */
/* new price boxes */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  gap: calc(-10px + 5vw);
  font-size: 24px;
  width: 100%;
  /* height: 250px; */
}

/* New Card */
.card {
  margin-left: -1rem;
  margin-right: -1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 2rem;
  width: 23vw;
  min-width: 310px;
  max-width: 410px;
  height: 60vh;
  min-height: 525px;
  max-height: 575px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  z-index: 100;
  border-radius: 2rem;
  background: radial-gradient(82.67% 82.67% at 50.00% 50.00%, rgba(226, 220, 228, 0.808) 0.25%, #EEE9E9 100%);
  /* box-shadow: rgba(107, 107, 197, 0.25) 0px 30px 60px -12px inset, rgba(255, 255, 255, 0.3) 0px 18px 36px -18px inset; */
  transition: 0.25s;
}

.card:hover {
  /* transform: translate(6px,9px); */
  transform: scale(1.03);

  transition: 0.25s;
}


.header {
  display: flex;
  flex-direction: column;
}

.price {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.desc {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.625;
  color: rgb(0, 0, 0);
  font-size: 1.15rem;
}

.lists {
  margin-bottom: 1.5rem;
  flex: 1 1 0%;
  color: rgb(0, 0, 0);
  padding-left: 0;
  font-size: 1.25rem;

}

.lists .list {
  margin-bottom: 0.5rem;
  display: flex;
  margin-left: 0.5rem
}

.lists .list svg {
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0;
  margin-right: 0.5rem;
  color: #9b56b3;
  position: relative;
}

.action {
  font-family: 'Poppins', sans-serif;
  border: none;
  outline: none;
  display: inline-block;
  width: 225px;
  height: 50px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgb(255, 255, 255);
  position: relative;
  top: -10px;
  border-radius: 20px;
  background: #3d3d3f;
  box-shadow: 0px 4px 15px 0px rgba(227, 148, 255, 0.25) inset, 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: 0.35s;
}

.listText {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 1rem;
}

.action:hover {
  background-color: #8A4AA0;
  transition: 0.35s;
  cursor: pointer;
}

ul.lists {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: left;
  /* Center the text */
}

li.list {
  display: inline-block;
  margin-right: 0;
}

/* contact page 4 */

.headingContact p {
  margin: 0;
  text-align: right;
  color: #ffffff;
  font-size: 48px;
  transform: translateY(-100px);
}

.contactContainer {
  top: 45%;
  font-size: 14px;
  left: calc(50%);
  width: calc(75vw);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #ffffff;
  transform: translate(-50%, -45%);
  gap: 75px;
}

.contactSmallText p {
  line-height: 1.25vw;
  text-align: right;
  transform: translateY(-36px);
  font-size: 0.9vw;
}

.contactBorder {
  height: 200px;
  border-left: 1px solid #ffffff;
}

.mail {
  width: 50%;
}

input.emailInput1 {
  width: 33vw;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  opacity: 0.7;
  border-radius: 50px;
  border: 0;
  padding: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
  outline: none;
}

::placeholder {
  color: black;
  opacity: 0.7;
  /* Firefox */
}

div.footer {
  position: relative;
  bottom: 100px;
}

div.socialMedia {
  display: flex;
  justify-content: center;
  align-items: center;
}


.copyright {
  text-align: center;
  padding-bottom: 10px;
  font-size: 12px;
  color: white;
}



.fa {
  padding: 20px;
  font-size: 96px;
  width: 15px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
  background: #303030;
  color: white;
  transition: 0.33s;
  margin-left: 15px;
  margin-right: 15px;
}

.fa:hover {
  opacity: 0.7;
  background-color: #8404b1;
  transition: 0.33s;
}

/* process page */
div.process {
  width: 100%;
  height: 100vh;
  position: relative;
  top: 50%;
  left: 20%;
  transform: translate(-20%, -50%);
  display: flex;
  flex-direction: column;
  /* overflow-y: scroll; */
}

div.step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  gap: 10vw;
}

.stepText {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45vw;
  margin-top: 15vh;
  font-size: 1vw;
}

div.step p.step {
  font-size: 2vw;
  margin: 0;
  opacity: 0.8;
  background: linear-gradient(180deg, #1E0F2B 0%, rgba(66, 26, 98, 0.7) 79.69%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translate(0, 140%);
}

div.step p.number {
  background: linear-gradient(180deg, #1E0F2B 0%, rgba(66, 26, 98, 0.4) 79.69%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 15vw;
  margin: 0;
}

div.stepNumber {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

div.mobileProcess .blockHeadingMobile {
  width: 100%;
}

div.mobileProcess {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 75px;
}

div.mobileStep {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

div.mobileStep p {
  text-align: center;
  font-size: calc(1vw + 10px);
  margin: 0;
  width: 95%;
}


.mobileStep .numbers {
  background: linear-gradient(180deg, #1E0F2B 0%, rgba(66, 26, 98, 0.4) 79.69%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40vw;
  margin: 0;
}

.mobileFooter {
  display: none;
}

/* effects */
.show {
  animation: show 2s linear infinite;
}

@keyframes show {

  0% {
    /* transform: translateY(0rem); */
    opacity: 0;
  }

  /* 35% {
    opacity: 0;
  }

  70% {
    opacity: 0;
  } */

  100% {
    opacity: 1;
  }
}

/* media queries  */
@media only screen and (max-height: 730px) and (min-width: 1000px) {
  p.desc {
    display: none;
  }

  .card {
    min-height: 475px;
  }

  .card:hover {
    transform: scale(1.02);
    transition: 0.25s;
  }

  div.header3 {
    top: 5%;
    transform: translate(-50%, -5%);
  }

  .container {
    top: 45%;
    transform: translate(-50%, -45%);
  }
}

@media (min-height: 1100px) {
  .card {
    max-height: 52.5vh;
    max-width: 525px;
    min-width: auto;
    border-radius: 2vw;
    padding: 2vw;
  }

  .lists .list svg {
    height: 1.5rem;
    width: 1.5rem;
    flex-shrink: 0;
    margin-right: 0.5rem;
    color: #9b56b3;
    position: relative;
    top: 0.5vh;
  }

  p.desc {
    font-size: 2vh;
  }

  p.listText {
    font-size: 1.5vh;
  }

  .list div span {
    font-size: 2vh;
  }

  span.price {
    font-size: 3vh;
  }

  div.text {
    top: 40%;
    transform: translateY(-50%);
  }

  h1 {
    font-size: 124px;
    margin-bottom: 75px;
  }

  h2 {
    font-size: 40px;
  }

  li a {
    font-size: 24px;
  }

  .block {
    height: calc(10vh);
  }

  .action {
    transform: scale(1.2);
  }

}

@media only screen and (max-width: 1130px) and (min-width: 1000px) {
  .card {
    transform: scale(0.9);
  }

  .card:hover {
    transform: scale(0.9);
  }

  .container {
    gap: 10px;
  }

  nav ul {
    display: none;
  }

  nav img {
    display: block;
  }

  nav {
    width: auto;
  }
}

@media only screen and (max-height: 650px) and (min-width: 1000px) {
  .card {
    transform: scale(0.9);
  }

  .card:hover {
    transform: scale(0.9);
  }

  .container {
    gap: 10px;
  }
}

@media only screen and (max-width: 1170px) and (min-width: 1000px) {
  .headingContact p {
    font-size: 36px;
  }
}

@media only screen and (max-height: 450px) {
h2 {
  display: none;
}
div.text {
  top: 0;
  transform: translate(0);
}
}

@media only screen and (max-width: 1000px) {

  /* mobile nav */
  nav ul {
    display: none;
  }

  nav img {
    display: block;
  }

  nav {
    width: auto;
  }

  /* page 1 */
  h1 {
    font-size: calc(54px + 5vw);
  }

  h2 {
    font-size: calc(20px + 1.5vw);
  }

  .text2 {
    width: 95vw;
    font-size: 14px;
  }

p.header3text {
  padding-top: 35px;
}

  /* page 3 */
  .container {
    margin-top: 20px;
    flex-direction: column;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
  }

  #section4 {
    height: auto;
  }

  #section4 div.content {
    height: auto;
  }

  div.header3 {
    top: 3%;
    left: 50%;
    transform: translate(-50%, -3%);
  }

  .card {
    min-height: 600px;
  }

  .card:hover {
    transform: scale(1);
  }

  /* page 4 */
  .contactContainer {
    flex-direction: column;
    top: 0;
    padding-top: 25px;
    display: flex;
    transform: translate(-50%, 0);
  }

  .headingContact p {
    text-align: center;
    transform: translate(0, 0);
  }

  .contactSmallText p {
    line-height: normal;
    text-align: left;
    transform: translateY(25px);
    font-size: 14px;
  }

  .contactBorder {
    height: 10px;
    width: 90%;
    border-bottom: 1px solid #ffffff;
    border-left: 0;

  }

  .mail {
    width: 100%;
  }

  input.emailInput1 {
    width: 66vw;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    opacity: 0.7;
    border-radius: 50px;
    border: 0;
    padding: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    outline: none;
  }

  #section5 {
    height: auto;
  }

  #section5 div.content {
    height: auto;
  }

  .footer {
    display: none;
  }

  .mobileFooter {
    display: block;
    padding-top: 50px;
  }

  .copyright {
    padding-bottom: 5px;
  }

  /* about & services page */
  div.mobileBlocks {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  div.blocks {
    display: none;
  }

  .headingAbout {
    font-size: 48px;
    font-weight: bold;
    top: 30px;
    left: 50%;
    position: relative;
    transform: translate(-50%, 0%);
    width: calc(100%);
    text-align: center;
    margin: 0;
  }

  #section2 {
    height: auto;
    padding-bottom: 20px;
  }

  #section2 div.content {
    height: auto;
    padding-bottom: 20px;
  }

  /* process page */
  div.process {
    display: none;
  }

  div.mobileProcess {
    display: flex;
  }

  #section3 {
    height: 1500px;
  }

  #section3 .content {
    height: 1500px;
  }

  /* videos */

  .videoBG video {
    display: none;
  }

  #section1 {
    background-image: url('images/1.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  #section2 {
    background-image: url('images/2.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  #section3 {
    background-image: url('images/22.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  #section4 {
    background-image: url('images/4.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  #section5 {
    background-image: url('images/5.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  body {
    overflow: auto;
  }
}

@media screen and (min-width: 450px) {
  .mobileStep .numbers {
    font-size: 20vw;
    margin: 10px;
  }
}

@media screen and (min-width: 750px) {
  .mobileStep .numbers {
    font-size: 12.5vw;
    margin: 10px;
  }
}

@media screen and (max-width: 450px) {

  div.card {
    min-width: 80vw;
  }


}

@media only screen and (max-height: 600px) and (min-width: 1000px){

  .text2 {
    width: 95vw;
    font-size: max(14px,3vh) ;
  }
  /* page 3 */
  .container {
    flex-direction: column;
  }

  #section4 {
    height: 2250px;
  }

  #section4 div.content {
    height: 2250px;
  }

  div.header3 {
    top: 3%;
    left: 50%;
    transform: translate(-50%, -3%);
  }

  .card {
    min-height: 600px;
  }

  .card:hover {
    transform: scale(1);
  }

  /* page 4 */
  .contactContainer {
    flex-direction: column;
    top: 0;
    padding-top: 25px;
    display: flex;
    transform: translate(-50%, 0);
  }

  .headingContact p {
    text-align: center;
    transform: translate(0, 0);
  }

  .contactSmallText p {
    line-height: normal;
    text-align: left;
    transform: translateY(25px);
    font-size: 14px;
  }

  .contactBorder {
    height: 10px;
    width: 90%;
    border-bottom: 1px solid #ffffff;
    border-left: 0;

  }

  .mail {
    width: 100%;
  }

  input.emailInput1 {
    width: 66vw;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    opacity: 0.7;
    border-radius: 50px;
    border: 0;
    padding: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    outline: none;
  }

  #section5 {
    height: auto;
  }

  #section5 div.content {
    height: auto;
  }

  .footer {
    display: none;
  }

  .mobileFooter {
    display: block;
    padding-top: 50px;
  }

  .copyright {
    padding-bottom: 5px;
  }

  /* about & services page */
  div.mobileBlocks {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  div.mobileBlock{
    width: min(75vw,750px);
    font-size: max(16px,1.25vw);
  }

  div.blocks {
    display: none;
  }

  .headingAbout {
    font-size: 48px;
    font-weight: bold;
    top: 30px;
    left: 50%;
    position: relative;
    transform: translate(-50%, 0%);
    width: calc(100%);
    text-align: center;
    margin: 0;
  }

  #section2 {
    height: 1800px;
  }

  #section2 div.content {
    height: 1800px;
  }

  /* process page */
  div.process {
    display: none;
  }

  div.mobileProcess {
    display: flex;
  }

  #section3 {
    height: auto;
  }

  #section3 .content {
    height: auto;
    margin-bottom: 50px;
  }

  /* videos */

  .videoBG video {
    display: none;
  }

  #section1 {
    background-image: url('images/1.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  #section2 {
    background-image: url('images/2.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  #section2  {
    height: auto;
  }
  #section2 div.content {
    height: auto;
    margin-bottom: 50px;
  }

  #section3 {
    background-image: url('images/22.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  #section4 {
    background-image: url('images/4.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  #section5 {
    background-image: url('images/5.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  body {
    overflow: auto;
  }
}

/* Remove the blur-related CSS */
section {
    position: relative;
    z-index: 1;
}

/* Keep scroll indicator styles */
#scroll-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scroll-line {
    width: 3px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.scroll-line.active {
    background-color: white;
}

/* Hide scroll indicator on mobile */
@media (max-width: 1000px) {
    #scroll-indicator {
        display: none;
    }
}

#scroll-indicator.dark .scroll-line {
    background-color: rgba(0, 0, 0, 0.3);
}

#scroll-indicator.dark .scroll-line.active {
    background-color: rgba(0, 0, 0, 0.8);
}

.disclaimer {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #00000079;
  color: #fff;
  /* padding: 10px; */
  z-index: 9998;
  justify-content: center;
  align-items: center;
  padding: 5px;
  cursor: pointer;
}

.disclaimer p {
  font-size: max(14px,1.25vw);
}

.disclaimerTitle {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}

.disclaimerClose {
  position: absolute;
  right: 25px;
  top: 0;
}

@media screen and (max-width: 1000px) {
  .disclaimer {
    display: flex;
  }
}