* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  font-family: sans-serif;
}
body,
html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

/* Header */
.menu-links {
  display: none;
  position: fixed;
  top: 0%;
  left: 0%;
  right: 0%;
  height: 0;
  width: 100vw;
  background: linear-gradient(50deg, #121213, #e72b51) !important;
  z-index: 20;
  padding: 40px;
}
.menu-links > ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.menu-links > ul li {
  list-style: none;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.menu-links > ul li a {
  text-decoration: none;
  color: #b3b3b3;
}
.menu-links > ul li a:hover {
  color: white;
}
.menu-links > ul li a:active {
  background: linear-gradient(50deg, #121213, #e72b51) !important;
}
.menu-icon {
  display: none !important;
  position: relative;
  z-index: 100;
}
nav {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: transparent;
  color: whitesmoke;
  z-index: 400;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0 10px;
  display: flex;
  gap: 20px;
  color: whitesmoke;
}
li a:hover {
  color: white;
}
nav ul li a {
  color: rgba(255, 255, 255, 0.874);
  text-decoration: none;
  font-size: 15px;
}
.navbar-logo {
  width: 30%;
  height: 100%;
  display: flex;
  justify-content: start;
  gap: 20px;
  align-items: center;
  cursor: pointer;
}
.navbar-logo img {
  width: 12%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.navbar-logo img:hover {
  filter: drop-shadow(2px 2px 2px red);
}

/* Firts section / Intro section / Section1 */

.intro-section {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  min-height: 120vh;
  background: linear-gradient(50deg, #121213, #e72b51) !important;
  border-bottom-left-radius: 3%;
  border-bottom-right-radius: 3%;
}

.intro-left {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 50px;
  gap: 20px;
}

.intro-left > h1 {
  color: white;
  font-size: 40px;
  font-weight: 500;
}
.intro-left > p {
  color: white;
  font-size: 18px;
  font-weight: 100;
  width: 80%;
}

.intro-left > button {
  position: relative;
  width: fit-content;
  padding: 15px 30px;
  background: transparent;
  font-weight: 600;
  word-spacing: 2px;
  outline: none;
  margin: 15px 0 0 0;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid white;
  color: whitesmoke;
  transition: all linear 0.1s;
}

.intro-right {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 45vw;
}

.intro-right > img {
  width: 100%;
  object-fit: cover;
  object-position: bottom left;
  border-radius: 10px;
  transform: translate(0, 0);
  animation: up-down 1.4s infinite linear alternate forwards;
  filter: drop-shadow(0px 0px 0px whitesmoke) blur(0);
  transition: filter 0.2s linear, scale 0.2s linear;
  cursor: pointer;
  scale: 0.9;
}

.intro-right > img:hover {
  scale: 0.95;
  filter: drop-shadow(2px 2px 7px whitesmoke) blur(1px);
}

/* 2nd Section / Description section*/

.description-section {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 50px 50px;
}
.description-section p {
  font-size: 16px;
  color: #7c7c7c;
  text-align: center;
}

/* Feature Section / 3rd Section */

.features-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  height: fit-content;
  padding-bottom: 30px;
}
.features-section h1 {
  font-size: 35px;
  font-weight: 500;
  text-align: center;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
  gap: 2vw;
}

.feature-item {
  width: 23%;
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 10px;
  /* cursor: pointer; */
  /* border-radius: 10px; */
  /* transition: all ease-in-out .3s 0s; */
}

.feature-icon {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-icon > img {
  width: 20%;
  object-fit: cover;
  object-position: center;
  filter: hue-rotate(90deg);
  cursor: pointer;
}
.feature-icon > img:hover {
  filter: hue-rotate(90deg) drop-shadow(1px 1px 2px red);
}

.feature-title {
  font-size: 20px;
  font-weight: 500;
}
.feature-description{
  text-align: center;
  font-weight: 500;
  color: rgba(123, 119, 119, 0.87);
  font-size: 15px;
}

.cta-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 50px;
  height: fit-content;
  padding: 0 0;
  justify-content: center;
  align-items: center;
}

.cta-section h1 {
  font-size: 38px;
  font-weight: 500;
}

.about-section {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 120px 50px 0;
  background: linear-gradient(50deg, #121213, #e72b51) !important;
}

.get-started-cta{
  width: 70%;
  height: 75%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  color: white;
  background: linear-gradient(50deg, #121213, #e72b51) !important;
  padding: 20px 30px;
  border-radius: 10px;
}

.section4 > div > h1 {
  font-size: 35px;
  font-weight: 500;
}

.btn {
  width: fit-content;
  padding: 15px 30px;
  background: transparent;
  font-weight: 600;
  word-spacing: 2px;
  outline: none;
  margin: 15px 0 0 0;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid white;
  color: whitesmoke;
  transition: all linear 0.1s;
}

.btn:hover {
  filter: blur(0.7px) !important;
  scale: 0.95;
}

.btn > span {
  padding: 0 3px;
}


footer {
  width: 100%;
  height: fit-content;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 20px;
  text-align: center;
}

/* .about-section {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  width: 30%;
} */

.footer-logo {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.footer-logo > img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.footer-logo > img:hover {
  filter: drop-shadow(2px 2px 2px red);
}

.desc > h1 {
  font-size: 14px;
  font-weight: 400;
  text-align: start;
  line-height: 19px;
  color: #b3b3b3;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  width: 100%;
  gap: 20px;
}

.contact-info ul {
  display: contents;
  list-style: none;
  color: #b3b3b3;
}

.contact-info ul .contact-item {
  display: flex;
  font-size: 15px;
  justify-content: start;
  align-items: start;
}

.contact-info ul .contact-item label {
  text-align: start;
  font-size: 15px;
  font-weight: 500;
  color: white;
  padding: 0 10px;
}

.contact-info ul .contact-item li {
  cursor: pointer;
}

.contact-info ul .contact-item li:hover {
  color: white;
}

/* Responsive styles */

.footer-bottom {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: fit-content;
  color: #b3b3b3;
}
.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    50deg,
    transparent,
    whitesmoke,
    transparent
  ) !important;
}
.footer-rights {
  text-align: center;
  font-size: 15px;
  padding: 18px 20px;
}

@keyframes up-down {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, 10px);
  }
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: start;
  }

  .about-section,
  .contact-info {
    width: 100%;
  }

  .footer-logo {
    width: 40px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 900px) {
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 700px) {
  footer {
    text-align: center;
    gap: 0;
  }
  .navbar-logo > h1 {
    font-size: 0.9em;
  }
  nav > ul {
    display: none;
  }

  .menu-icon {
    display: flex !important;
    position: relative;
    z-index: 30;
  }

  nav {
    z-index: 20;
  }

  .intro-section {
    flex-direction: column;
    height: 80vh;
    min-height: 40vh;
  }

  .intro-left {
    width: 100%;
    position: relative;
    z-index: 15;
    padding: 10px 30px;
  }
  .intro-left > h1 {
    font-size: 1.4em;
  }
  .intro-left > p {
    font-size: .9em;
  }
  .intro-right {
    position: absolute;
    height: 121%;
    opacity: 0.5;
  }

  footer {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
  .contact-info {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    padding: 0 0;
  }
  .features-section {
    flex-direction: column;
    gap: 30px;
  }
  .feature-item {
    width: 100%;
  }
  .get-started-cta{
    width: 90%;
  }
}

@media screen and (max-width: 450px) {
  .contact-info ul label {
    font-size: 10px;
  }
  .desc > h1 {
    font-size: 7px;
  }
  .about-section {
    padding: 50px 0 20px 0;
  }
}
