@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");

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

body {
  padding-top: 60px;
  height: 100%;
  background-color: var(--blue-color) !important;
}

:root {
  --bg-color: #1e1e1e;
  --text-white: #ffffff;
  --blue-color: #1c5dea;
  --light-bg-color: #2a2a2a;
  --icon-bg-color: #1c5dea33;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 40px;
  background-color: var(--bg-color);
  z-index: 1000;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: -1;
}

.logo {
  height: 60px;
  width: auto;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: var(--text-white);
  position: relative;
  text-decoration: none;
  font-size: 16px;
}

.nav-links a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: #ffffff;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

.nav-links a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.section {
  background-color: var(--bg-color);
  color: var(--text-white);
  padding: 100px 150px;
}

/* Hero section */

h1.large-heading {
  font-size: 60px;
  font-weight: 600;
}

.hero-section h5 {
  color: #ffffffe5;
  font-weight: 400;
  padding: 10px 0;
}

.button {
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
}

.button.btn-bg-blue {
  background-color: var(--blue-color);
  color: var(--text-white);
  border: none;
  transition: background-color 0.3s ease;
}

.button.btn-bg-blue:hover {
  background-color: #174bd3;
  box-shadow: 0 8px 20px rgba(28, 93, 234, 0.4);
}

.button.myBtn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--text-white);
  transition: border-color 0.3s ease;
}

.button.myBtn-outline:hover {
  border-color: var(--blue-color);
}

.scroll-icon {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mouse-shape {
  width: 40px;
  height: 65px;
  border: 2px solid white;
  border-radius: 20px;
  position: relative;
  background-color: var(--bg-color);
}

.dot {
  width: 10px;
  height: 10px;
  background-color: var(--blue-color);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: moveUpDown 1.2s infinite ease-in-out;
}

@keyframes moveUpDown {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.tag {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 16px;
  color: white;
  background: linear-gradient(#1e1e1e, #1e1e1e) padding-box,
    linear-gradient(90deg, #6a9eff, #41f9b9) border-box;
  border: 2px solid transparent;
  margin-bottom: 20px;
}

.video-section {
  background-color: var(--light-bg-color);
  padding: 40px 50px;
  border-radius: 8px;
}

.location-info {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 2rem;
}

.location-info .info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 13px;
}

.card-box {
  background-color: var(--light-bg-color);
  padding: 20px;
  border-radius: 8px;
}

.portfolio-icon img {
  background-color: #1c5dea33;
  padding: 10px;
  border-radius: 12px;
}

.execution-section {
  background-color: var(--light-bg-color);
  padding: 80px 95px;
  border-radius: 8px;
}

.execution-section p {
  font-size: 36px;
  font-weight: 400;
  text-align: center;
}

.execution-section span.gradient-text {
  background: linear-gradient(90deg, #6a9eff, #41f9b9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.execution-section span.gradient-text2 {
  background: linear-gradient(90deg, #41f9b9, #6a9eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.execution-box {
  background-color: var(--light-bg-color);
  padding: 15px;
  width: 100%;
  border-radius: 8px;
}

.execution-box img {
  max-width: 100%;
}

.milestone-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.milestone-info .info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.milestone-info .info .icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #1c5dea66;
  display: flex;
  align-items: center;
  justify-content: center;
}

.milestone-info .info .icon-wrapper img {
  width: 20px;
  height: 20px;
}

.milestone-info .info .text-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin: 0 0 4px 0;
}

.milestone-info .info .text-content p {
  font-size: 14px;
  color: #aaa;
  margin: 0;
}

.contact-form {
  background-color: var(--light-bg-color);
  padding: 80px 50px;
  border-radius: 8px;
}

.label {
  font-size: 15px;
}

.input-control {
  background-color: var(--bg-color);
  border-radius: 8px;
  border: 0;
  color: #eee;
  font-size: 16px;
  height: 100%;
  outline: 0;
  padding: 10px;
  width: 100%;
}

.address-container {
  padding: 0 50px;
}

.button-info {
  margin-top: 3rem;
}

.form-btn {
  width: 100%;
  border: none;
  background-color: var(--blue-color);
  padding: 14px 28px;
  color: var(--text-white);
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.email-info a {
  color: #a7c0ff;
}

.form-btn:hover {
  background-color: #174bd3;
  box-shadow: 0 8px 20px rgba(28, 93, 234, 0.4);
}

.footer-section {
  background-color: var(--bg-color);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

video {
  width: 100%;
  max-height: 100%;
}

.h-full {
  height: 100vh;
}

.horizontal-scroll-container {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.horizontal-scroll-wrapper {
  display: flex;
  height: 100%;
  width: max-content;
}

.panel {
  flex: 0 0 100vw;
  height: 100vh;
  box-sizing: border-box;
  scroll-snap-align: start;
}

#fixed-social {
  position: fixed;
  bottom: 130px;
  right: 30px;
}

#fixed-social a {
  color: #fff;
  display: block;
  height: 40px;
  position: relative;
  text-align: center;
  line-height: 40px;
  width: 40px;
  margin-bottom: 1px;
  z-index: 2;
}

/* 
.header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  opacity: 0.8;
  background: linear-gradient(270deg, #ffffffd6, #2e2e2e, #ffffff);
  width: 2px;
  height: 100%;
  z-index: -1;
}

.header:after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  opacity: 0.8;
  background: linear-gradient(270deg, #ffffffd6, #2e2e2e, #ffffff);
  width: 2px;
  height: 100%;
  z-index: -1;
}

.hero-section {
  position: relative;
  z-index: 9;
  -webkit-user-select: none;
  user-select: none;
}

.hero-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  opacity: 0.8;
  background: linear-gradient(270deg, #ffffffd6, #2e2e2e, #ffffff);
  width: 2px;
  height: 100%;
  z-index: -1;
}

.hero-section:after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  opacity: 0.8;
  background: linear-gradient(270deg, #ffffffd6, #2e2e2e, #ffffff);
  width: 2px;
  height: 100%;
  z-index: -1;
}

.horizontal-scroll-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  opacity: 0.8;
  background: linear-gradient(270deg, #ffffffd6, #2e2e2e, #ffffff);
  width: 2px;
  height: 100%;
  z-index: 1;
}

.horizontal-scroll-container:after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  opacity: 0.8;
  background: linear-gradient(270deg, #ffffffd6, #2e2e2e, #ffffff);
  width: 2px;
  height: 100%;
  z-index: 1;
}

.milestone-section{
  position: relative;
  z-index: 9;
  -webkit-user-select: none;
  user-select: none;
}


.milestone-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  opacity: 0.8;
  background: linear-gradient(270deg, #ffffffd6, #2e2e2e, #ffffff);
  width: 2px;
  height: 100%;
  z-index: 1;
}


.milestone-section:after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  opacity: 0.8;
  background: linear-gradient(270deg, #ffffffd6, #2e2e2e, #ffffff);
  width: 2px;
  height: 100%;
  z-index: 1;
}


.contact-section{
  position: relative;
  z-index: 9;
  -webkit-user-select: none;
  user-select: none;
}

.contact-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  opacity: 0.8;
  background: linear-gradient(270deg, #ffffffd6, #2e2e2e, #ffffff);
  width: 2px;
  height: 100%;
  z-index: 1;
}

.contact-section:after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  opacity: 0.8;
  background: linear-gradient(270deg, #ffffffd6, #2e2e2e, #ffffff);
  width: 2px;
  height: 100%;
  z-index: 1;
}

.footer-section{
  position: relative;
  z-index: 9;
  -webkit-user-select: none;
  user-select: none;
}

.footer-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  opacity: 0.8;
  background: linear-gradient(270deg, #ffffffd6, #2e2e2e, #ffffff);
  width: 2px;
  height: 100%;
  z-index: 1;
}

.footer-section:after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  opacity: 0.8;
  background: linear-gradient(270deg, #ffffffd6, #2e2e2e, #ffffff);
  width: 2px;
  height: 100%;
  z-index: 1;
} */

/* 404 page css */

.not-found-body {
  margin: 0;
  background: #0a0a0a;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.not-found-logo {
  margin-bottom: 30px;
}

.not-found-logo img {
  max-width: 180px;
}

.not-found-heading {
  font-size: 6rem;
  margin: 0;
  color: var(--blue-color);
}

.not-found-subHeading {
  font-size: 2rem;
  font-weight: 600;
  margin: 10px 0;
}

.not-found-para {
  font-size: 1rem;
  color: #ccc;
  max-width: 400px;
}

.not-found-btn {
  margin-top: 30px;
  padding: 12px 24px;
  background-color: var(--blue-color);
  color: var(--text-white);
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s;
}

.not-found-btn:hover {
  background-color: var(--blue-color);
}

@media (max-width: 600px) {
  .not-found-heading {
    font-size: 4rem;
  }
  .not-found-subHeading {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 768px) {
  .header {
    padding: 10px 0px;
  }

  .nav-links {
    gap: 10px;
  }

  .section {
    padding: 50px 10px 10px;
  }

  h1.large-heading {
    font-size: 38px;
  }

  .video-section {
    padding: 30px 20px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .execution-section {
    padding: 40px 15px;
  }
  .execution-section p {
    font-size: 24px;
  }

  .contact-form {
    padding: 40px 15px;
  }

  #fixed-social {
    position: fixed;
    bottom: 130px;
    right: 20px;
  }

  #fixed-social a {
    color: #fff;
    display: block;
    height: 30px;
    position: relative;
    text-align: center;
    line-height: 40px;
    width: 30px;
    margin-bottom: 1px;
    z-index: 2;
  }
}

@media only screen and (max-width: 600px) {
  .button {
    padding: 10px 12px;
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) {
  .section {
    padding: 80px 50px 40px;
  }
}

@media only screen and (min-width: 1024px) {
  h1.large-heading {
    font-size: 60px;
  }
  .execution-section {
    padding: 50px 15px;
  }

  .execution-section p {
    font-size: 30px;
  }
  .portfolio-text p {
    margin-bottom: 0;
    font-size: 14px;
  }
}

@media only screen and (min-width: 1200px) {
  h1.large-heading {
    font-size: 120px;
  }
  .portfolio-text p {
    margin-bottom: 0;
    font-size: 16px;
  }
  .section {
    padding: 120px 10px 50px;
  }
}
