@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Syne:wght@400..800&display=swap");

/* Common code */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container-fluid {
  max-width: 1300px;
}

.container-fluid-max {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.all-landing-screen{
  margin-top: 65px;
}

/* Header and Navigation */

.nav-bar-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: #242424;
}

.navigation {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.nav-main-wrapper {
  width: 100%;
  height: 65px;
  padding: 10px 18px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-wrapper {
  padding: 0 18px 10px 18px;
  width: 100%;
  height: 100%;
}

.nav-image {
  font-size: 24px;
}

.navigation-pages-wrapper {
  font-size: 14px;
}

.nav-link nav {
  display: flex;
  gap: 40px;
}

input,
a {
  font-family: Montserrat;
}

.nav-link nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 400;
  position: relative;
}

.nav-link nav a:hover {
  color: #e64eff;
}

.nav-link nav .active-nav {
  font-weight: 600;
}

.nav-link nav .active-nav::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 74px;
  height: 5px;
  background-color: #e64eff;
}

/* Mobile Styles */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 5px;
}

.burger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 5px;
}
/* Mobile Navigation Menu */

.nav-menu-wrapper {
  display: none;
  width: 100%;
  height: 100%;
  border-top: 0.2px solid #c7c7c7;
  margin-top: 10px;
  padding-top: 10px;
}

.mobile-nav-wrapper {
  display: none;
}

.nav-menu-wrapper a {
  padding: 12px 0px 12px 10px;
  width: 100%;
  text-decoration: none;
  color: #000;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 600;
}

.burger-menu span {
  transition: 0.3s ease-in-out;
}

.burger-menu.active :first-child {
  transform: rotate(45deg) translateY(12px);
}

.burger-menu.active :nth-child(2) {
  transform: translateX(-100%);
  opacity: 0;
}

.burger-menu.active :last-child {
  transform: rotate(-45deg) translateY(-12px);
}

.mobile-nav-wrapper.active .nav-menu-wrapper {
  display: flex;
}

.mobile-nav-wrapper.active {
  display: block;
}

.close-menu {
  cursor: pointer;
}

.close-menu svg {
  width: 24px;
  height: 24px;
  stroke: #000;
}

.splitted-section-header-main {
  font-weight: 800;
  text-transform: uppercase;
  background: -webkit-linear-gradient(#0b89e3, #bb00da);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu-wrapper .nav-item {
  opacity: 0;
  transform: translateY(-20px);
  animation: slideInNav 0.4s ease forwards;
  color: #ccc;
}

.nav-menu-wrapper .nav-item:nth-child(1) {
  animation-delay: 0.15s;
}

.nav-menu-wrapper .nav-item:nth-child(2) {
  animation-delay: 0.3s;
}

.nav-menu-wrapper .nav-item:nth-child(3) {
  animation-delay: 0.45s;
}

.nav-menu-wrapper .nav-item:nth-child(4) {
  animation-delay: 0.6s;
}

.nav-menu-wrapper .nav-item:nth-child(5) {
  animation-delay: 0.75s;
}

@keyframes slideInNav {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 5px;
}

.burger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .nav-link {
    display: none;
  }

  .contact-btn {
    display: none;
  }

  .burger-menu {
    display: flex;
  }
}
/* Left Header */

.left-header {
  width: 100%;
  padding: 20px;
  max-width: 600px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(7.65px);
}

.left-header h1 {
  color: #000;
  font-family: Syne;
  font-weight: 600;
}

.left-header .highlight {
  color: #c40000;
  display: inline-block;
  position: relative;
  font-family: Syne;
  font-weight: 600;
}

.left-header .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 80%;
  height: 2px;
  background-color: #c40000;
}

@keyframes slideFromTop {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Right Header */

.right-header {
  position: relative;
  border-radius: 16px;
  background: #fff;
  width: 100%;
  max-width: 400px;
  height: auto;
  padding: 40px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.right-inside-header h4 {
  font-family: "Syne", sans-serif;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}

.right-inside-header p {
  font-family: "Syne", sans-serif;
  font-weight: 400;
  color: #606060;
  margin-bottom: 20px;
}
.form-filling input[type="text"],
.form-filling input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
  font-size: 14px;
}

.phone-input {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border: none;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
  overflow: hidden;
  width: 100%;
}

.phone-input span {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #333;
  border: none;
  border-right: 2px solid #ccc;
  outline: none;
}

.phone-input input[type="tel"] {
  width: calc(100% - 70px);
  padding: 10px;
  border: none;

  outline: none;
  font-size: 14px;
}
.checkbox-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-container input[type="checkbox"] {
  margin-right: 8px;
}

.checkbox-container label {
  font-family: "Syne", sans-serif;
  font-weight: 400;
  color: #606060;
}

button[type="submit"] {
  background-color: #d0021b;
  color: white;
  padding: 10px 16px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

button[type="submit"] span {
  margin-left: 10px;
}

button[type="submit"]:hover {
  background-color: #a80015;
}

.country-code-input {
  border: none !important;
  margin-bottom: 0 !important;
  padding-right: 0 !important;
}

/* footer */

.footer-animated-container {
  transform-style: preserve-3d;
  overflow: hidden;
  perspective: 1000px; /* Adjusting perspective for responsiveness */
}

#footer-animated-wall {
  position: relative;
  display: flex;
  flex-direction: column;
  transform-origin: left center;
  transform: rotateY(45deg);
  width: 100%;
  height: 100vh; /* Full height of the viewport */
  gap: 6px;
}

.footer-animated-container .row-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%; /* Fill the vertical space */
  overflow: hidden;
}

.footer-animated-container .footer-row {
  display: flex;
  height: calc(100% / 3); /* 3 rows evenly spaced */
  width: 100%;
  flex-shrink: 0; /* Ensure rows don't shrink */
  animation: scrollRow 60s linear infinite; /* Horizontal scrolling */
}

.footer-animated-container .footer-row img {
  height: 100%;
  margin: 5px;
}

.footer-animated-container .footer-frame {
  position: relative;
  height: 100%;
}

.footer-animated-container .footer-reflection {
  position: absolute;
  height: 100%;
  transform: rotateX(180deg) translateY(-10px);
  opacity: 0.1;
}

.footer-animated-container .footer-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#000 75%, transparent);
  transform-origin: bottom center;
  transform: rotateX(180deg) translateY(-20px);
  display: none;
}

.home-page .footer-animated-container .footer-frame::after {
  display: block;
}

@media(max-width:576px){
  .home-page{
    margin-top: 65px;
  }
  .home-page #footer-animated-wall{
    height: 65vh;
  }
}

@keyframes scrollRow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-500%);
  }
}

/* Responsive settings */
@media (min-width: 0px) {
  .footer-animated-container {
    perspective: 550px;
  }
}

@media (min-width: 700px) {
  .footer-animated-container {
    perspective: 600px;
  }
}

@media (min-width: 1200px) {
  .footer-animated-container {
    perspective: 1000px;
  }
}

@media (min-width: 1600px) {
  .footer-animated-container {
    perspective: 2000px;
  }
}

/* background gradient  */

.color-blur {
  opacity: 0.9;
  filter: blur(189.12px);
  border: 1px solid;
  border-radius: 50vw;
  position: absolute;
  z-index: -1;
  width: 50vw;
  height: 50vw;

  &.right {
    right: 0;
    width: 25vw;
    border-radius: 50vw 0vw 00vw 50vw;
  }

  &.left {
    left: 0vw;
    translate: -50%;
  }

  &.cyan {
    background: linear-gradient(312.14deg, #45d5e3 3.65%, #17aebd 114.91%);
  }

  &.purple {
    background: linear-gradient(314.72deg, #7234f5 9.74%, #a36aff 87.31%);
  }

  &.yellow {
    background: linear-gradient(163.43deg, #ffe602 -8.25%, #f8a543 107.75%);
  }
}
