body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  height: 200vh; /* Increased to allow scrolling */
  background-color: #f0f0f0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

main {
  position: relative;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 10px;
  /* position: relative; */
}

#heading {
  position: sticky;
  top: 0;
  z-index: 1000;
  font-size: 180px;
  margin: 0;
  transition: font-size 0.1s;
}

.nav-menu-small {
  list-style: none;
  display: flex;
  margin-right: 20px;
  padding-left: 50px;
  /* padding-right: 50px; */
}

.nav-menu-small li {
  margin-left: 20px;
  padding-right: 20px;
}

.nav-menu-small a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  position: relative;
}

.nav-menu-small a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: black;
  transition: width 0.3s;
}

.nav-menu-small a:hover::after {
  width: 100%;
}

.navbar {
  display: flex;
  margin-bottom: 5px;
  margin-top: 20px;
  margin-right: 20px;
}

.anim-text-banner{
  font-size: 35px;
  font-weight: 600;
}

.anim-text-parent {

  color: black;
}

.anim-text-parent > .v-bar {
  position: absolute;
  width: 0px;
  height: 1vw;
  background: #ff9933;
  display: inline-block;
  top: 0px;
  left: -20px;
  transform: translate(-100%, 450%);
}

.anim-text-parent > .anim-text {
  overflow: hidden;
  white-space: nowrap;
  top: -30px;
  left: 170px;
  position: absolute;
  transition: width 1s ease;
  clip: rect(0px, 0px, 300px, 0px); /* Corrected clip property values */
}


.hr_heights {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hr-lines {
  background-color: black;
  width: 100%;
  height: 0;
  transition: height 1s ease-in-out; /* Initial height of the divs */
}

#cursor {
  position: fixed;

  top: 0;
  left: 0;
  /* border-radius: 100%; */
  /* z-index: 1; */
  /* z-index: 10000; */

  width: 10px;
  height: 10px;
  background-color: black;
  border-radius: 50%;
  /* position: absolute; */
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
}

.custom-button {
  display: inline-block;
  background-color: black;
  color: white;
  border: 2px solid black;
  border-radius: 90px;
  padding: 10px 20px;
  margin-top: 5px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.custom-button a {
  color: white;
  text-decoration: none;
  display: block;
}

.custom-button:hover {
  background-color: #f0f0f0;
  color: black;
  border-color: black;
}

.custom-button:hover a {
  color: black;
}

.builder {
  background-color: rgb(242, 242, 14);
}

.nav-content {
  position: relative;
}

.tagline-head {
  margin-top: 130px;
}

.tagline {
  font-size: 52px;
  font-weight: bold;
  margin: 10px 0;
  padding-left: 55px;
}

.length {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 400;
  margin-top: 270px;
  margin-left: 10px;
  margin-right: 10px;
}

.growth-lines {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  margin-right: 10px;
  margin-left: 10px;
}

.line {
  height: 150px;
  background-color: black; /* Adjust as needed */
  transform-origin: bottom; /* Ensure scaling happens from the bottom */
  /* Optional: If you want them aligned to the bottom */
}


.video-container {
  width: 100vw;
  height: 85vh;
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: brightness(50%); /* Ensures the video covers the entire container */
}

.menu-button {
  display: none;
}

.nav-menu-container {
  display: block;
  display: flex;
}

.video_cursor {
  width: 0px;
  height: 0px;
  background-color: none;
  border-radius: 50%;

  position: fixed;
  top: 0;
  left: 0;
  /* position: absolute; */
  pointer-events: none;
  z-index: 1000;
  display: flex; /* Initially hide the cursor */
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 0;
  text-align: center;
  padding: 5px;
  opacity: 0.9;
  filter: brightness(80%);
  transition: width 0.5s, height 0.5s; /* Add transition for width and height */
}

.video-container:hover .video_cursor {
  width: 80px;
  height: 80px;
  font-size: 16px;
  background-color: yellow;
}

.manifesto {
  margin-left: 30px;
  margin-top: 50px;
  font-size: 15px;
  font-weight: 200;
  color: #141415;
}

.text > p > div {
  background: linear-gradient(
      to right,
      rgb(37, 37, 37) 50%,
      rgba(87, 87, 87, 0.087) 50%
  );
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  /*   margin-bottom: -250px; */
  margin-left: 50px;
  line-height: 1.2;
  /*   outline: 6px dotted teal; */
  font-size: 10vw;
}

.hr_line {
  background-color: #141415;
  margin-right: 20px;
  margin-left: 250px;
  margin-top: 50px;
}

.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 250px;
  font-size: 21px;
  color: #464649;
  line-height: 1.25;
  font-family: "NeueMontreal", Arial, sans-serif;
  transform-origin: center center;
  margin-top: 20px;
}

.about_content {
  font-family: "NeueMontreal", Arial, sans-serif;
  margin-right: 40px;
}

.about-button {
  display: inline-block;
  background-color: black;
  color: white;
  border: 2px solid black;
  border-radius: 90px;
  padding: 12px 20px;

  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  margin-top: 25px;
  margin-left: 250px;
  margin-bottom: 10px;
}

.about-button a {
  color: white;
  text-decoration: none;
  display: block;
}

.about-button:hover {
  background-color: #f0f0f0;
  color: black;
  border-color: black;
}

.about-button:hover a {
  color: black;
}

.projects {
  font-size: 140px;
  margin-top: 100px;
  margin-bottom: 20px;
}

.project-head-1 {
  margin-left: 200px;
}

.project-head-2 {
  margin-left: 300px;
}

.full-width-img {
  width: calc(50% - 5px); /* Full width minus half the gap */
  height: auto;
}

.container {
  display: flex;
  justify-content: space-between;
  gap: 10px; /* Adjust the gap between images */
  padding: 20px;
  padding-bottom: 0; /* Adjust padding if needed */
  position: relative;
  margin-top: 20px; /* Needed for positioning the cursor */
}

.full-width-img {
  width: 100%; /* Full width minus half the gap */
  height: auto;
  transition: border-radius 0.3s; /* Smooth transition for border-radius */
}

.full-width-img:hover {
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.image_cursor {
  position: fixed;
  top: 0;
  left: 0;
  /* position: absolute; */
  width: 0px;
  height: 0px;
  background-color: none;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none; /* Prevents blocking of mouse events */
  z-index: 1000;
  opacity: 0.9;
  filter: brightness(80%);
  transform: translate(-50%, -50%);
}

.image-container:hover .image_cursor {
  display: flex;
  width: 100px;
  height: 100px;
  font-size: 16px;
  background-color: yellow;
}

.project_info {
  width: 100%;
}

.project-info-1,
.project-info-2 {
  width: 100%;
  max-width: 770px;
  position: relative;
  /* margin-left: 10px; */
}

.project-info-1 h6,
.project-info-2 h6 {
  font-size: 18px;
  margin-bottom: 25px;
}

.project-info-1 h2,
.project-info-2 h2 {
  font-size: 40px;
  margin-top: 10px;
  margin-bottom: 25px;
}

.project-info-1 h6,
.project-info-2 h6,
.project-info-1 h2,
.project-info-2 h2 {
  color: black;
}

.project-topic {
  margin-left: 20px;
}

.hr-animation {
  width: 0%;
  border: none;
  height: 1px;
  margin-left: 20px;
  position: absolute;
  left: 0;
  background-color: #333;
  transition: width 1s ease;
}

div .project-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}

.project-button {
  display: inline-block;
  background-color: black;
  color: white;
  border: 2px solid black;
  border-radius: 90px;
  padding: 8px 20px;
  margin-top: 5px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  margin-bottom: 30px;
}

.project-button a {
  color: white;
  text-decoration: none;
  display: block;
}

.project-button:hover {
  background-color: #f0f0f0;
  color: black;
  border-color: black;
}

.project-button:hover a {
  color: black;
}

.services {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 140px;
  margin-top: 120px;
  margin-bottom: 20px;
}

.services_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.services_type {
  width: 50%;
  margin-bottom: 20px;
  position: relative;
}

.services_type h2 {
  font-size: 15px;
  font-weight: 500;
  margin-top: 30px;
  margin-left: 20px;
  color: #2d2d2f;
}

.services_type div span {
  font-weight: 600;
  font-size: 35px;
  margin-left: 13px;
  margin-top: 28px;
}

.services_list ul {
  list-style: none;
  padding: 0;
  margin-top: 28px;
}

.services_list li {
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 1.1;
}

.head {
  display: flex;

  width: 200px;
}

.services-items {
  display: flex;
  gap: 260px;
}

.hr_heights {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hr-lines {
  background-color: black;
  width: 100%;
  height: 0;
  transition: height 1s ease-in-out; /* Initial height of the divs */
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f0f0;
  padding: 50px;
  background-color: black;
}

.footer-content {
  flex: 1; /* Take up remaining space */
  position: relative;
}

.footer-question {
  font-weight: 600;
  margin-top: 5px;
  font-size: 35px;
  width: 330px;
  color: white;
}

.footer-info {
  margin-top: 10px;
  font-weight: 600;
  font-size: 35px;
  text-decoration: underline;
  margin-left: 150px;
  color: white;
}


.footer-contact {
  font-weight: 600;
  font-size: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-mail {
  color: white;
}

.anim-text-parent {
  color: white !important;
}

.footer-contact > div {
  margin-top: 10px;
}

.footer-mail a {
  text-decoration: none;
  color: white !important;
}

.social {
  /* height: 90px; */
  display: flex;

  gap: 15px;
}

.footer-button {
  display: inline-block;
  background-color: #f0f0f0;
  color: black;
  border: 1px solid black;
  border-radius: 90px;
  padding: 8px 10px;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  margin-top: 20px;
  margin-bottom: 30px;
}

.footer-button a {
  color: black;
  text-decoration: none;
  display: block;
}

.footer-button:hover {
  background-color: black;
  color: #f0f0f0;
  border-color: #f0f0f0;
}

.footer-button:hover a {
  color: #f0f0f0;
}

.last_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f0f0;
  padding: 10px 20px;
}

.copywrite {
  color: #888; /* Light gray color */
  font-size: 15px; /* Adjust font size as needed */
  font-weight: 500; /* Adjust font weight as needed */
}

.policies {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
}

.policies > div {
  color: #333; /* Darker color for policies */
  cursor: pointer; /* Add cursor pointer to show it's clickable */
}

.footer_hr {
  color: black;

  background-color: black;
  margin: 0 20px;
}

.footer_container {
  height: 60px;
  overflow: hidden;
}

.v-slide {
  font-size: 35px;
  font-weight: 600;
  line-height: 50px;
  margin-left: 150px;
  color: black;
  position: absolute;
  left: 20%;
  top: 100%;
  transform: translate(-60%);
}

.footer-switch {
  position: relative;
  list-style-type: none;
}

/* Project CSS  */

#project-heading {
  font-size: 40px;
  margin: 20px;
}

.heading-link {
  text-decoration: none; /* Removes underline */
  color: inherit; /* Inherits the color from the parent element */
}

.page_projects {
  margin-top: 220px;
  font-size: 140px;
  margin-bottom: 20px;
}

.project_hr_lines {
  width: 95%;
  border: none;
  height: 2px;
  margin-left: 20px;
  position: absolute;
  left: 0;
  background-color: #333;
}

.project-navbar {
  display: flex;
  margin-bottom: 5px;
  margin-top: 15px;
  margin-right: 20px;
}


/* About CSS  */

.about-navbar {
  display: flex;
  margin-bottom: 5px;
  margin-top: 15px;
  margin-right: 20px;
}

.about_container {
  position: relative;
}

.about_header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white; /* Add a background color to avoid content overlap */
  z-index: 1000; /* Ensure the header is on top of other content */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0; /* Adjust padding as needed */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#about-heading {
  font-size: 40px;
  margin: 20px;
}


.about-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 220px;
  margin-left: 30px;
  margin-right: 20px;
}

.about-heading {
  font-size: 150px;
  font-weight: 500;
  margin-right: 300px;
}

.about-description {
  color: #000000;
  font-size: 28px;
  margin-right: 80px;
  line-height: 1.25;
  font-weight: 400;
}

.about-description span {
  background-color: rgb(242, 242, 14);
}


.about_image_container {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 50px;
  margin: 150px 20px 20px 20px;
}

.about_image_container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.custom-hr {
  border: none;
  border-top: 1px solid black;
  margin: 20px 30px;
}

.about-services-items {
  display: flex;
  gap: 800px;
}

.about-head2 {
  display: flex;
}

.about-services_list ul {
  list-style: none;
  padding: 0;
  margin-top: 28px;
}

.about-services_list li {
  margin-bottom: 5px;
  font-size: 32px;
  line-height: 1.1;
}

.about-service-type {
  margin: 30px;
}


.about-service-type {
  position: relative;
}

.about-service-type h2 {
  font-size: 19px;
  font-weight: 500;
  margin-top: 33px;
  margin-left: 20px;
  color: #2d2d2f;

}

.about-service-type div span {
  font-weight: 600;
  font-size: 50px;
  margin-left: 13px;
  margin-top: 28px;
  margin-bottom: 80px;
}

.footer_hr_line {
  border: none; /* Removes default border */
  border-top: 20px solid black; /* Dark and thin line */
  margin: 40px 0;
/
}

.about_cursor {
  width: 0px;
  height: 0px;
  background-color: none;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 0;
  text-align: center;
  padding: 5px;
  opacity: 0.9;
  filter: brightness(80%);
  transition: width 0.5s, height 0.5s;
}

.about_image_container:hover .about_cursor {
  width: 80px;
  height: 80px;
  font-size: 16px;
  background-color: yellow;
}

.nav-menu {
  display: none;
}

.custom-button-small {

  display: none;

}


/* Project Responsive  */

@media (max-width: 426px) {

  .anim-text-banner{
    font-size: 28px;
  }

  .anim-text-parent > .anim-text {
    overflow: hidden;
    white-space: nowrap;
    top: -30px;
    left: 120px;
    position: absolute;
    transition: width 1s ease;
    clip: rect(0px, 0px, 300px, 0px); /* Corrected clip property values */
  }


  .page_projects {
    margin-top: 160px;
    font-size: 50px;
    margin-bottom: 20px;
  }

  .about-head {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 150px;
    margin-left: 30px;
    margin-right: 20px;
    /* width: fit-content; */
  }

  #project-heading {
    font-size: 25px;
    margin: 20px;
  }

  .about_image_container {
    height: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 50px;
    margin: 60px 20px 20px 20px;
  }

  .about_image_container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }


  .about-service-type div span {
    font-weight: 600;
    font-size: 26px;
    margin-left: 13px;
    margin-top: 6px;
    margin-bottom: 65px;
  }

  .about-service-type h2 {
    font-size: 12px;
    font-weight: 500;
    margin-top: 6px;
    margin-left: 0px;
    color: #2d2d2f;
  }

  .svg_image_container {
    width: 150px;
  }

  .svg_image {
    height: 100px;
    margin-left: 0px;
  }

  .footer-question, .footer-info, .footer-contact {
    margin-left: 0;
    font-size: 25px;
  }

  .about-services-items {
    display: flex;
    gap: 80px;
  }

  .about-services_list li {
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 1.1;
  }

  .about-description {
    color: #000000;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 400;
    margin-right: 0;
  }

  .about_header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .header {
    flex-direction: column;
    align-items: center;
  }

  .v-slide {
    font-size: 25px;
    font-weight: 600;
    line-height: 50px;
    margin-left: 60px;
    color: black;
    position: absolute;
    left: 20%;
    top: 100%;
    transform: translate(-60%);
  }

  .nav-menu {
    display: none;
  }

  .nav-menu li {
    margin: 0;
    padding: 5px 0;
  }

  .nav-menu a {
    font-size: 14px;
  }

  .custom-button {
    display: none;
  }

  .tagline {
    font-size: 24px;
    padding-left: 10px;
  }

  .tagline-head {
    margin-top: 30px;
  }

  .video-container {
    width: 100vw;
    height: 40vh;
  }

  .projects, .services {
    font-size: 60px;
    text-align: center;
    margin: 40px 0;
  }

  .project-head-1 {
    margin-left: 50px;
  }

  .project-head-2 {
    margin-left: 100px;
  }

  .container {
    flex-direction: column;
    padding: 5px;
  }

  .full-width-img {
    width: 100%;
  }

  .about {
    flex-direction: column;
    margin: 0 10px;
    text-align: center;
  }

  .about-button {
    margin: 10px auto;
    width: calc(100% - 20px);
  }

  .services_type {
    width: 100%;
    text-align: center;
  }

  .services_type h2, .services_type div span {
    text-align: center;
    margin-left: 0;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 20px 20px 20px;
  }

  .footer-question, .footer-info, .footer-contact {
    margin-left: 0;
    font-size: 28px;
  }

  .footer-contact {
    align-items: flex-start;
  }

  .social {
    margin-top: 5px;
  }

  .image-container:hover .image_cursor {
    display: none;
  }

  .image_cursor {
    display: none;
  }

  .footer-button {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
  }

  .footer-question {
    margin-top: 0;
  }

  .last_footer {
    align-items: flex-start;
  }

  .policies {
    flex-direction: column;
    gap: 5px;
  }

  .copywrite {
    text-align: center;
  }

  .nav-menu {
    display: none;
  }


  .menu-button {
    display: inline-block;
    background-color: black;
    color: white;
    border: 2px solid black;
    border-radius: 90px;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    cursor: pointer;
  }

  .nav-menu-container.show {
    display: block;
  }

  /* Style the menu container for small screens */
  .nav-menu-container {
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px;
    position: absolute;
    width: 100%;
    top: 61px; /* Adjust based on the height of the menu button */
    left: -60px;
    display: flow-root;
    display: none;
    border-radius: 10px;
  }

  .nav-menu-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column; /* Arrange items vertically */
  }

  .nav-menu-container ul li {
    margin: 10px 0;
  }

  .custom-button-small {
    display: inline-block;
    background-color: black;
    color: white;
    border: 2px solid black;
    border-radius: 90px;
    padding: 10px 20px;
    margin-top: 5px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s,
  }

  .custom-button-small a {
    color: white;
    text-decoration: none;
    display: block;
  }

}


@media (min-width: 800px) and (max-width: 1024px) {

  .project-head-1 {
    margin-left: 150px;
  }

  .project-head-2 {
    margin-left: 250px;
  }
}
