@font-face {
  font-family: "ibmPlexMono";
  src: url("./assets/fonts/IBMPlexMono-Regular.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "ibmPlexMonoBold";
  src: url("./assets/fonts/IBMPlexMono-Bold.ttf") format("ttf");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "ibmPlexMonoThin";
  src: url("./assets/fonts/IBMPlexMono.ttf") format("ttf");
  font-weight: 100;
  font-style: italic;
  font-size: 48px;
  line-height: 62.4px;
  letter-spacing: 0%;
  text-align: center;
}

@font-face {
  font-family: "ibmPlexMonoBI";
  src: url("./assets/fonts/IBMPlexMono-BoldItalic.ttf") format("ttf");
  font-weight: bold;
  font-style: italic;
}

:root {
  --primary-font: "ibmPlexMono", monospace;
  --primary-font-bold: "ibmPlexMonoBold", monospace;
  --primary-font-thin: "ibmPlexMonoThin", monospace;
  --primary-font-bi: "ibmPlexMonoBI", monospace;
  --body-font: Roboto, sans-serif;
  --primary-color: #ff520d;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font), sans-serif;
  background: linear-gradient(#cdcccc, #ffffff);
  margin: 0px;
  color: #736e6e;
  padding: 0px;
}

a {
  text-decoration: none;
  color: #333;
}

.footer a:hover {
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #302d2d;
  font-weight: 700;
}

.hamburgur {
  display: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  height: 4em;
  padding-right: 2.5em;
  padding-left: 12px;
  align-items: center;
  position: fixed;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  left: 0px;
  top: -4.1em;
  background: #dadada;
  z-index: 100;
  width: 100%;
  transition: top 0.3s ease-in-out;
}

.nav .logo {
  font-family: var(--primary-font-bold);
  font-weight: bold;
  font-size: 24px;
  color: var(--primary-color);
}

.nav .menu {
  display: flex;
  gap: 4rem;
  padding-right: 3rem;
  font-family: var(--primary-font);
}

.menu.show-menu {
  top: 0rem !important;
  transition: top 0.6s ease-in-out;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.menu a:hover,
.menu a:active {
  color: var(--primary-color);
}

#landing {
  height: 80vh;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 4em;
}

.circle {
  position: absolute;
  border-radius: 50%;
  transform: rotate(75deg);
  z-index: -100;
  border-image-source: linear-gradient(
    244.98deg,
    rgba(118, 118, 118, 0.4) 11.49%,
    rgba(0, 0, 0, 0) 53.04%,
    rgba(255, 255, 255, 0.4) 100%
  );
  background: linear-gradient(135deg, #ffffff 18.3%, #121416 94.08%);
  animation: float 6s infinite alternate ease-in-out;
}

.circle:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  box-shadow: -8.45px -14.08px 39.42px 0px #e8edf30d;
  box-shadow: 25.34px 8.45px 45.05px 0px #02030366;
  left: 80%;
  animation-duration: 5s;
}

.circle:nth-child(2) {
  width: 50px;
  height: 50px;
  top: 50%;
  left: 70%;
  box-shadow: -4.88px -8.14px 22.79px 0px #e8edf30d;
  box-shadow: 14.65px 4.88px 26.04px 0px #02030366;
  animation-duration: 3s;
}

.circle:nth-child(3) {
  width: 200px;
  height: 200px;
  box-shadow: -23.75px -39.59px 110.84px 0px #e8edf30d;
  box-shadow: 71.26px 23.75px 126.68px 0px #02030366;
  bottom: 10%;
  left: -5%;
  animation-duration: 6s;
}

.circle:nth-child(4) {
  width: 25vw;
  height: 25vw;
  min-width: 200px;
  min-height: 200px;
  top: 27%;
  left: 30%;
  background: linear-gradient(
    154.22deg,
    #d9d9d9 53.49%,
    rgba(182, 181, 178, 0) 86%,
    #fe7a45 146.51%
  );
  z-index: -1;
  animation-duration: 9s;
}

@keyframes float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-20vh);
  }
}

.content {
  text-align: center;
  z-index: 10;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 20px;
  width: 28vw;
  height: auto;
}

.content h1 {
  font-family: var(--primary-font-thin);
  font-weight: 100 !important;
  font-size: 48px;
}

.text-highlight {
  color: var(--primary-color);
  font-family: var(--primary-font-bi);
  font-weight: bold;
  font-style: italic;
}

.content p {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 400;
  color: #302d2d;
}

.content a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

button {
  color: #524f4f;
  background: #f8f8f8;
  padding: 10px;
  padding-right: 20px;
  border-radius: 100px;
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 20px;
  width: 65%;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 171px 48px 0px rgba(0, 0, 0, 0),
    0px 109px 44px 0px rgba(0, 0, 0, 0.01),
    0px 61px 37px 0px rgba(0, 0, 0, 0.05), 0px 27px 27px 0px rgba(0, 0, 0, 0.09),
    0px 7px 15px 0px rgba(0, 0, 0, 0.1);
}

i {
  transition: all 0.3s ease-in-out;
}

button i {
  background: #f4eded;
  margin: 0px;
  padding: 12px;
  height: 100%;
  border-radius: 100%;
  border-radius: 86.538px;
  box-shadow: 0px 147.981px 41.538px 0px rgba(0, 0, 0, 0),
    0px 94.327px 38.077px 0px rgba(0, 0, 0, 0.01),
    0px 52.788px 32.019px 0px rgba(0, 0, 0, 0.05),
    0px 23.365px 23.365px 0px rgba(0, 0, 0, 0.09),
    0px 6.058px 12.981px 0px rgba(0, 0, 0, 0.1);
}

button:hover,
button:active {
  color: white;
  background: var(--primary-color);
}

button:hover > i,
button:active > i {
  background: white;
  color: var(--primary-color);
}

.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding-top: 12.5em;
}

#whyASAR {
  padding-left: 20px;
  padding-right: 20px;
}

.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
}

.info-box {
  padding: 40px 16px;
  border-radius: 12px;
  background: #555;
  box-shadow: 0px 210px 59px 0px rgba(0, 0, 0, 0),
    0px 134px 54px 0px rgba(0, 0, 0, 0.01),
    0px 76px 45px 0px rgba(0, 0, 0, 0.05), 0px 34px 34px 0px rgba(0, 0, 0, 0.09),
    0px 8px 18px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  font-size: 28px;
  font-weight: 400;
  max-width: 300px;
  flex-direction: column;
  gap: 16px;
  color: white;
}

.info-box h3 {
  color: white;
  margin: 0px;
}

.highlight-box {
  background: #ff9258;
  font-size: 28px;
  padding: 56px 16px;
  grid-row: span 2;
}

.highlight-box h3 {
  font-size: 48px;
  font-weight: bold;
  color: white;
  font-family: var(--primary-font-bold);
}

.bottom-box {
  grid-column: span 2;
  max-width: 100%;
}

#services {
  display: flex;
  gap: 50px;
  margin: 0px 20px;
}

#services h2 {
  font-family: var(--primary-font-bold);
  font-size: 48px;
  font-weight: 700;
  margin: 0px;
  color: #302d2d;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 35px 10px;
  position: relative;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 25px;
  background: linear-gradient(
    326deg,
    rgba(71, 70, 70, 0.4) -63.53%,
    rgba(97, 97, 97, 0) 89.55%
  );
  box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25),
    -5px -5px 250px 0px rgba(255, 255, 255, 0.02) inset;
  backdrop-filter: blur(21px);
  align-items: flex-start;
  padding: 60px 44px;
  max-width: 450px;
  transition: all 0.3s ease-in-out;
}

.service-item:hover {
  box-shadow: 10px 13px 58px 5px rgba(0, 0, 0, 0.61);
  backdrop-filter: blur(2px);
  transition: all 0.3s ease-in-out;
}

.service-item h3 {
  font-family: var(--primary-font-bold);
  margin: 0px;
  font-size: 24px;
}

#services .service-item p {
  font-family: var(--body-font);
  font-size: 20px;
  margin: 0px;
  width: 100%;
  font-weight: 100;
  color: #302d2d;
}

.socials {
  display: flex;
  gap: 15px;
  margin-top: 16px !important;
}

.socials i {
  font-size: 36px;
  color: #333;
  transition: all 0.3s ease-in-out;
}

#projects h2 {
  font-family: var(--primary-font);
  font-size: 44px;
  margin: 0px;
}

.projects {
  margin: 30px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.project-card {
  padding: 36px 16px 20px 16px;
  border-radius: 25px;
  max-width: 400px;
  background: #efefef;
  transition: all 0.3s ease-in-out;
  box-shadow: 2px 5px 50px 0px rgba(0, 0, 0, 0.25);
}

.project-card:hover {
  box-shadow: 10px 13px 58px 5px rgba(0, 0, 0, 0.61);
  backdrop-filter: blur(2px);
  transition: all 0.3s ease-in-out;
}

.project-card:hover .project-arrow {
  box-shadow: 10px 13px 58px 5px rgba(0, 0, 0, 0.61);
  right: -50px;
  transition: all 0.3s ease-in-out;
}

.project-card h4 {
  position: relative;
  font-size: 24px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-arrow {
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -40px;
  height: 60px;
  transition: all 0.3s ease-in-out;
  width: 60px;
  background: #ff9258;
  box-shadow: 3.697px 3.697px 18.485px 0px rgba(0, 0, 0, 0.1),
    0px 127.13px 51.319px 0px rgba(0, 0, 0, 0.01),
    0px 71.146px 43.154px 0px rgba(0, 0, 0, 0.05),
    0px 31.491px 31.491px 0px rgba(0, 0, 0, 0.09),
    0px 8.164px 17.495px 0px rgba(0, 0, 0, 0.1);
}

.project-arrow img {
  height: 32px !important;
}

.project-images {
  display: flex;
  min-height: 200px;
  position: relative;
}

.app-images {
  padding-bottom: 0px;
}

.app-images .project-images {
  justify-content: center;
  gap: 10px;
  align-items: flex-end;
}

.second-project-img {
  position: absolute;
  right: 0;
  bottom: 30px;
}

#contact {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: row;
  margin-bottom: 0px;
  gap: 20px;
}

.cta {
  min-width: 300px;
}

.cta:last-of-type button {
  gap: 70px;
}

.cta button {
  width: 100%;
}

#reviews {
  margin: auto;
  width: 100vw;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 18px;
  margin: 30px auto;
}

.review-card {
  padding: 40px 20px;
  border-radius: 30px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  background: #333;
  color: white;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

/* Contact Section */
.contact-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  padding: 30px;
  background: radial-gradient(
    circle at top left,
    #ff520d41,
    #1e1e1e12,
    #1e1e1e12
  );
  overflow: hidden;
  border-radius: 30px;
  width: 80vw;
  max-width: 1200px;
  backdrop-filter: blur(30.95656967163086px);
}

.contact-info {
  padding: 20px;
}

.contact-info h2 {
  color: var(--primary-color);
  font-size: 1.4em;
  font-weight: bold;
}

.info {
  margin: 20px 0;
  font-weight: bold;
}

.info p {
  font-size: 14px;
  margin: 8px 0;
}

p.highlight {
  font-size: 18px;
  color: black;
}

.social-icons img {
  width: 24px;
  margin-right: 10px;
  cursor: pointer;
}

/* Right Section */
.contact-form {
  padding: 20px;
}

.sender {
  display: flex;
  justify-content: space-between;
}

.input-group {
  margin-bottom: 15px;
}

.input-group label {
  font-weight: bold;
  margin-bottom: 5px;
}

.input-group input,
.input-group textarea {
  margin: 0.5em 0;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.input-group input {
  width: 78%;
}

.input-group input:focus-visible,
.input-group textarea:focus-visible {
  border-color: var(--primary-color) !important;
}

.full-width textarea {
  height: 80px;
  resize: none;
}

.send-btn {
  width: 60%;
  padding: 12px;
  text-align: center;
  justify-content: center;
  background-color: #ff5722;
  box-shadow: none;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.send-btn:hover {
  box-shadow: 3px 3px #323232;
  background-color: #e64a19;
}

.footer {
  position: relative;
  background: transparent;
  padding: 50px 0;
  height: 40vh;
  text-align: center;
  overflow: hidden;
}

.footer img {
  position: absolute;
  bottom: -130px;
  left: 0;
  width: 100%;
}

.circle-bottom {
  position: absolute;
  border-radius: 50%;
  z-index: -100;
  border-image-source: linear-gradient(
    244.98deg,
    rgba(118, 118, 118, 0.4) 11.49%,
    rgba(0, 0, 0, 0) 53.04%,
    rgba(255, 255, 255, 0.4) 100%
  );
  background: linear-gradient(135deg, #ffffff 18.3%, #121416 94.08%);
  box-shadow: 25.34px 8.45px 45.05px 0px #02030366;
}

.large {
  width: 200px;
  height: 200px;
  top: 10vh;
  right: 12vw;
}

.small {
  width: 60px;
  height: 60px;
  top: 10vh;
  left: 36vw !important;
}

/* Copyright Text */
.footer-content {
  position: absolute;
  width: 100vw;
  bottom: 10px;
  color: #424242;
  font-size: 18px;
  font-weight: 100;
  margin-top: 50px;
}

.footer-content div {
  text-align: left;
}

.footer-content p {
  margin: 8px 0px;
}

.direct-contacts {
  display: flex;
  justify-content: center;
  color: #424242 !important;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.direct-contacts i {
  font-size: 36px;
}

.contacts {
  display: flex;
  gap: 30px;
}

@media screen and (max-width: 1000px) {
  .projects {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .hamburgur {
    display: block;
    position: static;
    padding-right: 20px;
    font-size: 24px;
    cursor: pointer;
    z-index: 100;
  }

  .nav {
    position: fixed;
    top: 0px;
    padding: 0px;
    box-shadow: none;
  }

  .nav .logo {
    padding-left: 20px;
    font-size: 20px;
  }

  .nav .menu {
    position: absolute;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 20px 0px;
    top: 0px;
    width: 100%;
    background: #dadada;
    top: -20rem;
    transition: top 0.3s ease-in-out;
  }

  .menu a {
    font-size: 16px;
  }

  #landing,
  #whyASAR,
  #services,
  #team,
  #projects,
  #reviewes,
  #contact,
  .action {
    width: 100%;
  }

  .content {
    width: 80vw;
    padding: 10px;
    height: 50vh;
  }

  .content h1 {
    font-size: 32px;
  }

  .content p {
    color: black;
  }

  .circle:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 75vw;
    top: 20%;
  }

  .circle:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 80vw;
  }

  .circle:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 10vw;
  }

  .circle:nth-child(4) {
    width: 50vw;
    height: 50vw;
    left: 25%;
  }

  #whyASAR {
    padding-left: 0px;
    padding-right: 0px;
  }

  .info-section {
    width: 90%;
    gap: 6px;
  }

  .info-box {
    padding: 16px;
    font-size: 16px;
    display: flex;
    justify-content: center;
  }

  .highlight-box h3 {
    font-size: 32px;
  }

  #services {
    margin: 0px;
  }

  .services-list {
    grid-template-columns: 1fr;
    margin: 0px 20px;
    gap: 20px;
  }

  .service-item {
    padding: 35px;
  }

  .service-item h3 {
    margin-top: 0px;
    font-size: 2em;
    font-weight: 900;
  }

  .socials {
    justify-content: center;
  }

  .project-card {
    text-align: left;
    transform: scale(0.9);
    width: auto;
  }

  .project-images {
    min-width: auto;
  }

  .contact-container {
    width: auto;
    margin: 0px 10px;
    display: block;
    padding: 10px;
  }

  #contact {
    flex-direction: column;
    padding-top: 100px;
    margin-bottom: 30px;
  }

  .footer {
    height: 40vh;
    padding: 0px;
  }

  .footer img {
    bottom: -0;
  }

  .footer .circle-bottom {
    display: none;
  }

  .direct-contacts {
    flex-direction: column;
  }

  .contacts {
    display: flex;
    gap: 20px;
  }

  .contact a {
    font-weight: 500;
  }

  .copyright {
    margin: 28px !important;
  }
}
