:root {
  --theme-color: #f79164;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: black;
  color: white;
  padding-top: 6vw;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 8vw;
  }
}
@media screen and (max-width: 480px) {
  body {
    padding-top: 10vw;
  }
}
/* Hero */
.hero-top {
  padding-inline: 4vw;
  padding-right: 0;
  display: flex;
  justify-content: space-between;
}

.hero-top .heading {
  display: flex;
  align-items: flex-end;
}
.hero-top .heading h1 {
  font-size: 2.5vw;
  font-weight: 900;
  position: relative;
}
.hero-top .heading .square {
  position: absolute;
  left: 110%;
  top: 55%;
  width: 0.6vw;
  height: 0.6vw;
  background-color: var(--theme-color);
}

.hero-top .right {
  padding: 1.5vw;
  border: 2px solid white;
  border-right: none;
  font-size: 0.9vw;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: baseline;
}

.hero-main {
  /* border: 2px solid red; */
  position: relative;
  padding-inline: 2vw;
  padding-bottom: 0;
  display: flex;
  justify-content: space-between;
}
.hero-main img {
  width: 70%;
}
.hero-main .content {
  position: absolute;
  text-align: center;
  right: 10vw;
  top: 10vw;
  display: flex;
  flex-direction: column;
}
.hero-main .vertical-text {
  margin-inline: auto;
  writing-mode: vertical-rl;
  font-size: 1.8vw;
  font-family: Arial, sans-serif;
  transform: rotate(-180deg);
  align-self: flex-start;
}
.hero-main .content h1 {
  text-transform: uppercase;
  font-size: 2vw;
}
.hero-main .content p {
  font-size: 1.5vw;
}

@media screen and (max-width: 768px) and (min-width: 480px) {
  .hero-top .right {
    font-size: 1.8vw;
    line-height: 1.3;
  }
  .hero-top .heading h1 {
    font-size: 3vw;
  }
  .hero-top .heading .square {
    width: 1vw;
    height: 1vw;
  }
  .hero-main .content {
    right: 7vw;
    top: 2vw;
  }
  .hero-main .content h1 {
    font-size: 3.5vw;
  }
  .hero-main .content p {
    font-size: 2.8vw;
  }
}

@media screen and (max-width: 480px) {
  .hero-top .heading h1 {
    font-size: 5vw;
  }
  .hero-top .heading .square {
    width: 1.8vw;
    height: 1.8vw;
  }

  .hero-top .right {
    font-size: 2.2vw;
    line-height: 1.3;
  }
  .hero-main .vertical-text {
    display: none;
  }
  .hero-main .ai-driven {
    display: none;
  }
  .hero-main img {
    width: 80%;
  }
  .hero-main .content {
    right: 5vw;
    top: 2vw;
  }
  .hero-main .content h1 {
    text-transform: uppercase;
    font-size: 3.5vw;
    line-height: 1.2;
  }
  .hero-main .content p {
    font-size: 2.8vw;
    line-height: 1.4;
  }
  .hero-main .content button {
    padding: 0.8vw 1vw;
    font-size: 2.8vw;
  }
}

/* STATS BANNER */
.stats {
  padding: 0 5vw;
  box-shadow: rgba(235, 232, 232, 0.25) 0px 5px 65px,
    rgba(211, 204, 204, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(177, 173, 173, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  display: flex;
  justify-content: space-between;
}

.stat {
  display: flex;
  gap: 0.5vw;
  justify-content: space-around;
  align-items: center;
}
.stat span {
  color: var(--theme-color);
}
.stat h1 {
  font-size: 4.5vw;
}
.stat p {
  font-size: 1.5vw;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .stat h1 {
    font-size: 4vw;
  }
  .stat p {
    font-size: 2vw;
  }
}

@media screen and (max-width: 480px) {
  .stat h1 {
    font-size: 4vw;
  }
  .stat p {
    font-size: 2vw;
    line-height: 1.3;
  }
}

/* FORM section */
.form-section {
  display: flex;
}
.form-section .image {
  width: 30%;

  background-image: url("../assets/contact-2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.form-section .form {
  flex: 1;
  padding: 2vw 12vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1vw;
}
.form-section .form h1 {
  color: var(--theme-color);
  font-size: 3.3vw;
  font-weight: 900;
  text-transform: uppercase;
}
.form-section .form p {
  font-size: 1.8vw;
  font-weight: 600;
  text-transform: uppercase;
}
.form-section .form form {
  /* border: 2px solid red; */
  margin-top: 1vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1vw;
  width: 100%;
}
.form-section .form form input,
textarea {
  background-color: black;
  padding: 1vw;
  border: 2px solid var(--theme-color);
  width: 100%;
  font-size: 1.3vw;
}
.form-section .form form input {
  font-size: 1.3vw;
  color: white;
}

.form-section .form form textarea {
  font-size: 1.3;
  color: white;
}

.form-section .form form button,
.formBtn {
  padding: 1vw 2vw;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.5vw;

  background-color: var(--theme-color);
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .form-section .form {
    flex: 1;
    padding: 2vw 8vw;
  }
  .form-section .form h1 {
    font-size: 4.5vw;
  }
  .form-section .form p {
    font-size: 2vw;
  }
  .form-section .form form input {
    font-size: 2vw;
  }

  .form-section .form form textarea {
    font-size: 2vw;
  }
  .form-section .form form button,
  .formBtn {
    font-size: 2vw;
  }
}

@media screen and (max-width: 480px) {
  .form-section .form {
    flex: 1;
    padding: 2vw 4vw;
  }
  .form-section .form h1 {
    font-size: 5.5vw;
  }
  .form-section .form p {
    font-size: 2.3vw;
  }
  .form-section .form form input {
    font-size: 2.8vw;
  }

  .form-section .form form textarea {
    font-size: 3.5vw;
  }
  .form-section .form form button,
  .formBtn {
    font-size: 2.8vw;
  }
}

/* Modal */
.modal {
  position: fixed;
  z-index: 500;
  height: 100vh;
  width: 100%;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: grid;
  place-items: center;
}

.message-box {
  border: 2px solid white;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  max-width: 35vw;
  padding: 2vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1vw;
}
.message-box h1 {
  font-size: 2.5vw;
}
.message-box p {
  font-size: 1.2vw;
}

.message-box button {
  padding: 0.8vw 1.2vw;
  border-radius: 12px;
  border: none;
  font-size: 1.2vw;
  font-weight: 600;
  cursor: pointer;
}

.close {
  display: none;
}
.show {
  display: grid;
}
@media screen and (max-width: 768px) {
  .message-box {
    max-width: 45vw;
  }
  .message-box h1 {
    font-size: 2.5vw;
  }
  .message-box p {
    font-size: 2.2vw;
  }

  .message-box button {
    font-size: 2.2vw;
  }
}

@media screen and (max-width: 480px) {
  .message-box {
    max-width: 60vw;
  }
  .message-box h1 {
    font-size: 3.5vw;
  }
  .message-box p {
    font-size: 3.2vw;
  }

  .message-box button {
    font-size: 3.2vw;
  }
}


/* Side Social Media Links */
.side-social-media-links {
  position: absolute;
  right: 0.3vw;
  top: -5vw;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  gap: 1vw;
  color: var(--theme-color);
  border-radius: 15px;
  padding: 2vw 1vw;
  font-size: 2vw;
  height: fit-content;
}
.side-social-media-links a {
  color: var(--theme-color);
}

.side-social-media-links i:hover {
  color: black;
  cursor: pointer;
}

@media screen and (max-width: 768px) and (min-width: 480px) {
  .side-social-media-links {
    font-size: 3vw;
  }
}

@media screen and (max-width: 480px) {
  .side-social-media-links {
    padding: 3vw 2vw;
    font-size: 3.3vw;
    top: -9vw;
  }
}
