/* General  */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  font-weight: 500;
}
a {
  text-decoration: none;
}
.red {
  color: #b20000;
}
.padded {
  padding: 1rem 10% 0 10%;
}
.pc {
  display: block;
}
.mobile {
  display: none;
}

@media (max-width: 768px) {
  .padded {
    padding: 0 5%;
  }
  .pc {
    display: none;
  }
  .mobile {
    display: inline-block;
  }
}
/* General Ends  */
/* 
 */
/* --- Navbar Base --- */

.navbar {
  background-color: #020000;
  border-bottom: 1px solid #b2000080;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  padding-top: 5px;
  padding-bottom: 5px;
}
.mobile-menu {
  display: none;
}
.mobile-menu.active {
  display: flex;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Logo --- */
.logo {
  height: 3rem;
  width: auto;
  cursor: pointer;
}

/* --- Nav Links --- */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  font-size: 1rem;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #b20000;
}

/* --- Button --- */
.nav-btn {
  background-color: #b20000;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav-btn {
    padding: 8px 16px;
    border-radius: 4px;
  }
}

.nav-btn:hover {
  background-color: #990000;
}

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #b20000;
  border-radius: 3px;
}

/* --- Mobile Menu --- */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #020000;
  border-top: 1px solid #b20000;
  padding: 10px 20px;
}

.mobile-menu a {
  color: #ccc;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 0, 0.1);
}

.mobile-menu a:hover {
  color: #b20000;
}

.mobile-menu .nav-btn {
  margin-top: 10px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .mobile-menu.show {
    display: flex;
  }
}

/* Hero  */
.hero {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #020000;
  position: relative;
}
.ellipse {
  position: absolute;
  width: 242px;
  height: 242px;
  background: #b20000;
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.6;
  z-index: 0;
}
.ellipse1 {
  top: 40px;
  left: 21px;
}
.hero-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
/* --- Responsive --- */
@media (max-width: 768px) {
  .hero-text {
    align-items: center;
    text-align: center;
  }
}
.live-support {
  border: 1.15px solid #b20000;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 8px 16px;
  border-radius: 20px;
}
.live-support span {
  height: 9px;
  width: 9px;
  background: #b20000;
  border-radius: 50%;
  align-self: center;
  animation: pulse 2s infinite;
}

/* The pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.main-text {
  color: #ffffff;
  font-size: 3rem;
  line-height: 4rem;
}
@media (max-width: 768px) {
  .main-text {
    font-size: 2.6rem;
    line-height: 3.2rem;
  }
}
.sub-main-text {
  color: #ffffff;
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 2rem;
}
.mini-feature {
  display: flex;
  flex-direction: row;
  gap: 20px;
  font-size: 0.9rem;
  align-items: center;
  justify-content: start;
}
@media (max-width: 768px) {
  .mini-feature {
    justify-content: center;
  }
}
.download {
  display: flex;
  flex-direction: row;
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 4px 8px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
}
.download:hover {
  background-color: #565656;
  cursor: pointer;
}
.download-text {
  font-family: "Google Sans Code", monospace;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.download-text strong {
  font-size: 0.8rem;
}
.download-text span {
  font-size: 0.5rem;
}
.play-btn {
  width: 1.5rem;
}
.hero-img {
  max-width: 50%;
}
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    gap: 2rem;
  }
  .hero-img {
    max-width: 95%;
  }
}
/* Hero Ends  */
/* Features Section  */
.about {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 4rem auto;
}
.about-img {
  max-width: 40%;
}
.about-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  width: 45%;
}
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
  }
  .about-text {
    width: 100%;
  }
  .about-img {
    max-width: 80%;
  }
}
.title {
  background-color: #fbe5e6;
  padding: 8px 16px;
  border-radius: 16px;
  font-size: 0.8rem;
  color: #b20000;
  letter-spacing: -0.02rem;
  max-width: fit-content;
  display: inline-block;
}
.highlight {
  color: #020000;
  font-size: 2.5rem;
  line-height: 3.5rem;
}
.long-text {
  font-size: 0.95rem;
  line-height: 1.6rem;
  font-weight: 400;
  color: #4a4444;
  letter-spacing: -0.01rem;
}
.about .dark-bg-text {
  font-size: 0.95rem;
  line-height: 1.6rem;
  color: #ffffff;
  background-color: #020000;
  padding: 16px;
  border-radius: 8px;
}
.features {
  padding: 4rem 0;
  text-align: center;
}
.features-container1,
.features-container2 {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 1rem;
}
.features-container2 {
  grid-template-columns: 40% 60%;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .features-container1,
  .features-container2 {
    grid-template-columns: 1fr;
  }
}
.item {
  border: 1px solid #b20000;
  border-radius: 20px;
  padding: 2rem;
  text-align: start;
}
.item img {
  width: 50px;
  height: 50px;
}
/* why chose us  */
.why-chose-us {
  background: #020000;
  position: relative;
  color: #ffffff;
  padding-top: 2rem;
  padding-bottom: 0;
  overflow: hidden;
}
.why-chose-us .features {
  padding-bottom: 0;
}
.ellipse2 {
  top: 0;
  right: 0;
}
.why-chose-us .title {
  background: #2f0002;
}
.why-chose-us .highlight {
  color: #ffffff;
  width: 70%;
  margin: auto;
}
.why {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.why div {
  width: 37%;
  font-size: larger;
}
.why img {
  width: 15%;
}
.why span,
.why-chose-us .long-text {
  font-size: 0.95rem;
  line-height: 1.6rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.01rem;
  width: 70%;
  margin: auto;
}
@media (max-width: 768px) {
  .why {
    flex-direction: column;
    gap: 4rem;
  }
  .why div {
    width: 100%;
  }
  .why img {
    width: 25%;
  }
  .why span,
  .why-chose-us .long-text {
    width: 100%;
  }
  .why-chose-us .highlight {
    width: 100%;
  }
}
.imagine {
  display: flex;
  flex-direction: row;
  margin: 3rem 4.5rem 0 4.5rem;
  align-items: center;
  justify-content: space-between;
  background: #1a0102;
  border: 2px solid #b20000;
  border-bottom: none;
  border-radius: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 2rem 2rem 0 2rem;
}
.imagine-text {
  flex: 0 0 50%;
  text-align: start;
  font-family: DM Sans, sans-serif;
}
.imagine-text .nav-btn {
  display: inline-block;
}
.imagine img {
  width: 30%;
}
@media (max-width: 768px) {
  .imagine {
    flex-direction: column;
    gap: 4rem;
    margin: 3rem auto 0 auto;
  }
  .imagine img {
    width: 100%;
  }
  .imagine-text {
    flex: 1;
  }
}
/* steps  */
.steps {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.steps img {
  width: 27%;
}
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    gap: 2rem;
  }
  .steps img {
    width: 90%;
  }
}

.form label {
  margin-bottom: 8px;
  font-weight: 500;
  font-family: DM Sans, sans-serif;
  font-size: 0.9rem;
  color: #232020;
}
.form input,
.form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 16px;
  /* height: 70px; */
  border: 1px solid #c8c8c8;
  border-radius: 15px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}
.form-group {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: flex-start;
  gap: 1rem;
}
.group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1rem;
}
.group button {
  background-color: #b20000;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  width: 20%;
}
@media (max-width: 768px) {
  .form-group {
    display: inline-block;
  }
  .group button {
    width: 100%;
  }
}
/* Epilogue  */
.epilogue {
  position: relative;
  background: #020000;
  padding-top: 2rem;
  padding-bottom: 2rem;
  z-index: 0;
  overflow: hidden;
}
.ellipse3 {
  top: 0;
  right: 40%;
}
.ellipse4 {
  top: 50%;
  left: 0;
}
.epilogue-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 5;
}
.epilogue-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 0 0 40%;
}
.epilogue-text .title {
  background-color: #2f0002;
}
.epilogue-text .highlight {
  color: #ffffff;
}
.epilogue-text .long-text {
  font-size: 0.95rem;
  line-height: 1.6rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.01rem;
}
.epilogue-text .nav-btn {
  width: fit-content;
}
@media (max-width: 768px) {
  .epilogue-content {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }
  .epilogue-text {
    justify-content: center;
    align-items: center;
  }
  .epilogue-content img {
    max-width: 80%;
  }
}
/* Footer  */
.footer {
  background-color: #020000;
  color: #ffffff;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}
.footer-content-right {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex: 0 0 65%;
}
@media (max-width: 768px) {
  .footer-content,
  .footer-content-right {
    flex-direction: column;
    gap: 2rem;
  }
}
.footer-content-left {
  flex: 0 0 25%;
}
.footer-title {
  margin-bottom: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.footer-text {
  font-size: 0.8rem;
  font-weight: 400;
  color: #ffffff;
}
.footer-text a {
  color: #ffffff;
  text-decoration: none;
}
.footer-text a:hover {
  color: #b20000;
  cursor: pointer;
}
.socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.socials img {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  cursor: pointer;
}
