@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Righteous&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Righteous&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&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");

:root {
  --black: #0c0c0c;
  --blue: #5cb8e0;
  --linear-black-white: linear-gradient(
    93.9deg,
    #ffffff 55.85%,
    #000000 104.88%
  );
  --white: #ffffff;
  --gray: #1b1e1d;
  --border-color: #515356;
  --light-gray: #98a2b3;
  --heading_one: clamp(2.3rem, 5vw, 4rem);
  --heading_two: clamp(2.5rem, 4vw, 3rem);
  --heading_three: clamp(2.1rem, 3vw, 2.4rem);
  --heading_three_blue: clamp(1.2rem, 2.5vw, 2rem);
  --heading_four: clamp(1rem, 2vw, 1.8rem);
  --heading_bigger: clamp(3rem, 8vw, 6rem);
  --heading_paragraph: clamp(14px, 2.5vw, 20px);
  --passion-card-heading: clamp(1.2rem, 2vw, 1.6rem);
  --cursive-font: "Bagerich", serif;
}

* {
  padding: 0;
  margin: 0 !important;
  box-sizing: border-box !important;
  scroll-behavior: smooth;
  font-family: "Poppins", serif;
  color: var(--white);
}

@font-face {
  font-family: "Bagerich";
  src: url("../fonts/bagerichdemo.otf") format("opentype");
}

.container-lg {
  padding: 0 !important;
}

section {
  background: var(--gray);
}

svg {
  flex: none;
}

.logo_img {
  width: 150px;
}

.hero_section {
  background: var(--black);
  min-height: 100vh;
  position: relative;
}

nav {
  z-index: 10;
}

.nav_options .nav-item a {
  padding: 8px 0 !important;
  position: relative;
}

.nav_options .nav-item a::before {
  content: "";
  background: var(--blue);
  height: 3px;
  width: 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 20px;
  transition: all 0.2s linear;
}

.nav_options .nav-item a:hover::before {
  width: 50%;
}

.nav_options li a {
  color: var(--white) !important;
  font-size: 18px;
  font-weight: 400;
}

.navbar-toggler-icon {
  width: 1.5em;
  height: 1.5em;
  background-image: url(../images/menu.png) !important;
}
.navbar-toggler {
  border: none !important;
}
.navbar-toggler:focus {
  box-shadow: none !important;
}

.get_in_touch {
  background: var(--blue);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  border-radius: 9px;
  color: var(--black);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.get_in_touch::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  height: 200%;
  width: 10px;
  background: var(--white);
  transform-origin: top;
  transform: rotate(16deg);
  filter: blur(17px);
  transition: all 0.6s linear;
}

.get_in_touch:hover::before {
  left: 150%;
}

.get_in_touch p {
  color: var(--black);
  font-weight: 500;
  font-size: 18px;
}

.get_in_touch svg {
  width: 29px;
  height: 29px;
}

.heading_one {
  font-family: "Roboto Serif", serif;
  font-size: var(--heading_one);
  font-weight: 600;
  background: var(--linear-black-white);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.heading_one span {
  font-family: "Roboto Serif", serif;
  background: var(--blue);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: inherit;
  font-weight: inherit;
}

.heading_two {
  font-family: var(--cursive-font);
  font-size: var(--heading_two);
  font-weight: 400;
  background: linear-gradient(93.9deg, #ffffff 35.85%, #2e2c2c 98.88%);
  background-clip: text !important;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.heading_two span {
  font-family: var(--cursive-font);
  background: var(--blue);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: inherit;
  font-weight: inherit;
}

.heading_three {
  font-family: var(--cursive-font);
  font-size: var(--heading_three);
  font-weight: 400;
  background: linear-gradient(93.9deg, #ffffff 71.85%, #2e2c2c 104.88%);
  background-clip: text !important;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.heading_three_blue {
  font-family: var(--cursive-font);
  font-size: var(--heading_three_blue);
  font-weight: 400;
  color: var(--blue);
}

.heading_four {
  font-size: 24px;
  font-weight: 500;
  background: linear-gradient(180deg, #ffffff 0%, #3d3d3d 100%);
  background-clip: text !important;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero_img_box {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  overflow: hidden;
}

.lines_img {
  width: 600px;
  height: 500px;
  opacity: 1;
  overflow: hidden;
}

.glow_box {
  position: absolute;
  top: 24%;
  left: 43%;
  z-index: 1;
  width: 43%;
}

.glow_box_2 {
  position: absolute;
  top: 45%;
  right: 1%;
  z-index: 1;
  width: 11%;
}

.circle_img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 40px;
  z-index: 1;
}

.curve_blue {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 28%;
}

.get_in_touch.anchor_btn svg {
  width: 23px;
  height: 23px;
}

.parallax-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  perspective: 1000px;
  border-radius: 20px;
}

.parallax-image {
  position: absolute;
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.1s ease-out;
  transform-origin: center;
}

.mission_one {
  position: absolute;
  top: 5%;
  left: 5%;
  z-index: 1;
  width: 60%;
}

.mission_two {
  position: absolute;
  bottom: 15%;
  right: 10%;
  z-index: 2;
  width: 60%;
}

.projects_img {
  width: 200px;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 16/9;
}

.project_card {
  border: 0.7px solid var(--border-color);
  border-radius: 23.5px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: transparent;
  transition: all 0.2s linear;
  overflow: hidden;
  height: 100%;
}
.project_card:hover {
  transform: translateY(-10px) rotateX(-20deg);
  box-shadow: 4px 4px 20px var(--black);
}

.project_card img {
  width: 49px;
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center;
}

.project_card h5 {
  font-family: var(--cursive-font);
  font-weight: 400;
  background: linear-gradient(180deg, #ffffff 0%, #3d3d3d 100%);
  background-clip: text !important;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.project_card p {
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.2px;
  line-height: 22px;
}

.project_card p b {
  font-weight: 600;
}

.padding_top_1 {
  padding-top: 200px;
}

.heading_two span.bigger_text {
  font-size: var(--heading_bigger);
  line-height: var(--heading_bigger);
}

.faded_text {
  opacity: 0;
  -webkit-filter: blur(12px);
  filter: blur(12px);
}

.faded_text.in-view {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

svg {
  flex: none;
}

.do_img_box {
  width: 100%;
  height: 550px;
  position: relative;
}

.do_img_box img.img_1 {
  width: 59%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.do_img_box img.img_2 {
  width: 59%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.dom_heading {
  height: 450px;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}
.dome {
  background: var(--gray);
  width: 200px;
  height: 200px;
  border-radius: 100%;
  transform-origin: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: scale(10.5) translate(-5%, 38%);
  box-shadow: 0px 10px 40px var(--blue);
}

.passion_card {
  border: 0.7px solid var(--border-color);
  border-radius: 23.5px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: transparent;
  transition: all 0.2s linear;
  overflow: hidden;
  height: 100%;
}

.passion_card img {
  width: 70px;
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center;
}

.passion_card h3 {
  font-weight: 300;
  font-family: var(--cursive-font);
  font-size: var(--passion-card-heading);
}

.passion_card:hover {
  transform: translateY(-10px) rotateX(-20deg);
  box-shadow: 4px 4px 20px var(--black);
}

.footer_logo {
  width: 100px;
}

.form_input {
  width: 100%;
  padding: 10px 15px;
  background: transparent;
  border: 1px solid var(--blue);
  border-radius: 6px;
}

input:focus,
textarea:focus {
  outline: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.submit_btn {
  background-color: var(--blue);
  padding: 10px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--black);
  border: 0;
}

.blue_border {
  border: 1px solid var(--blue);
  border-radius: 24px;
}

.footer_options li a {
  color: var(--white);
  transition: all 0.2s linear;
}

.footer_options li a:hover {
  color: var(--blue);
}

/* Glow Box Animation */
.glow_box {
  animation: glowBoxScale 0.7s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards,
    glowBoxBounce 1.5s ease-in-out infinite alternate,
     glowBoxRandom 5s ease-in-out infinite alternate;
}

@keyframes glowBoxScale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes glowBoxBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes glowBoxRandom {
  0%,
  100% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
}

/* Glow Box 2 Animation */
.glow_box_2 {
  animation: glowBox2Scale 0.7s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards,
    /* back.out */ glowBox2Bounce 1.5s ease-in-out infinite alternate,
    /* sine.inOut */ glowBox2Random 4s ease-in-out infinite alternate; /* power1.inOut */
}

@keyframes glowBox2Scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes glowBox2Bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes glowBox2Random {
  0%,
  100% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
}

/* Lines Image Animation */
.lines_img {
  animation: linesImgFadeIn 2.5s ease-in;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes linesImgFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
