@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  /* ebcf74 */
  /* 1d99e1 */
  --primaryColor: #eeb76b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins";
  color: white;
}

html,
body {
  width: 100%;
  background-color: black;
}

/* Unversal Elements */
button {
  margin: 10px 0;
  padding: 10px 20px;
  color: var(--primaryColor);
  background-color: transparent;
  border: solid var(--primaryColor);
  font-size: 1rem;
  font-weight: 550;
  transition: 0.4s;
  border-radius: 9999px;
  cursor: pointer;
  outline: none;
  gap: 30px;
}
button:hover {
  color: white;
  background-color: var(--primaryColor);
}

h1 {
  color: var(--primaryColor);
  font-size: 33px;
}

h3 {
  line-height: 3;
  font-size: 1.4vw;
  font-weight: 600;
}

p {
  line-height: 1.6;
  font-size: 1rem;
  opacity: 0.8;
}

a {
  text-decoration: none;
  white-space: nowrap;
}

/* nav section  */
.navbar {
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1a1a;
  padding: 14px 20vw;
  border-bottom: 1px solid var(--primaryColor);
  position: sticky;
  top: 0;
  box-shadow: 0px 2px 10px var(--primaryColor);
  z-index: 1000;

  /* nav components  */
  .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primaryColor);
    font-size: 34px;
    font-weight: bold;
    margin-right: 20px;

    img {
      width: 150px;
      padding: 2px;
      /* width: 130px; */
    }
  }

  .logo2 {
    display: none;
  }

  .logo:hover {
    cursor: pointer;
  }

  .NavLinksContainer {
    .nav-links {
      transition: all 0.3s ease-in-out;
      list-style: none;
      display: flex;
      gap: 20px;

      li a {
        color: white;
        text-decoration: none;
        font-size: 15px;
        transition: color 0.3s;
        text-transform: uppercase;
      }
    }
    .nav-links li a:hover {
      color: var(--primaryColor);
    }
  }

  .hamburger {
    border: solid var(--primaryColor);
    padding: 3px;
    border-radius: 3px;
    display: none;
    flex-direction: column;
    cursor: pointer;


    span {
      height: 3px;
      width: 23px;
      background: white;
      margin: 2px 0;
      transition: 0.4s;
    }
  }

  .loginBtn {
    width: 100px;
    height: 50px;
    margin-left: 20px;
  }
}

/* Whatsapp section  */

.whatsapp {
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  position: fixed;
  right: 20px;
  bottom: 30px;

  .wInner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 10px;

    .label {
      color: black;
      background-color: rgba(255, 255, 255, 0.671);
      padding: 5px;
      border-radius: 10px;
      margin: 10px;
    }

    .img {
      height: 55px;
      width: 55px;
      border-radius: 100%;
      background: url(assets/imgs/whatsapp1.png);
      background-position: center;
      background-size: cover;
    }
  }
}

/* Main section  */
/* All sections  */

.hero {
  width: 100%;
  padding: 30px 20vw 200px 20vw;
  background: url(assets/imgs/bg-image.png);
  background-size: cover;
  background-position: center;

  .inner2 {
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: solid; */

    .inner3 {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: start;
      gap: 20px;
      width: 70%;
      /* border: solid blue; */

      div {
        display: flex;
        flex-direction: column;
      }
    }

    .inner4 {
      margin-top: 30px;
      padding: 10px;
      max-width: 350px;
      border-radius: 20px;
      overflow: hidden;

      img {
        border-radius: 100%;
        width: 100%;
        height: 100%;
        box-shadow: 2 0px 8px rgba(0, 0, 0, 0.7);
      }
    }
  }
}

.section2 {
  height: fit-content;
  width: 100%;
  background-color: black;
  padding: 30px 15vw 50px 15vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  .firstdiv {
    width: 90%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;

    .customer-para {
      font-size: 20px;
    }
  }
}

.sectionImg1 {
  background: url(assets/imgs/bg2.png);
  background-size: cover;
  background-position: center;
}
.sectionImg2 {
  background: url(assets/imgs/bg-image.png);
  background-size: cover;
  background-position: center;
}

.circleContainer {
  width: fit-content;
  display: flex;
  justify-content: space-evenly;
  gap: 30px;
  flex-wrap: wrap;
  padding: 25px;
  /* border: solid red; */

  .circle {
    margin: 10px;
    height: 200px;
    width: 200px;
    border: solid white;
    border-radius: 100%;
    opacity: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
    h3 {
      text-align: center;
      padding: 0 10px;
      line-height: 1.3;
      opacity: 1;
    }
  }
}

.btnCont,
.btnCont2 {
  width: 80vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.btnCont2 {
  margin-bottom: auto;
}

.boxContainer {
  padding: 20px;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  .box {
    height: 200px;
    width: 300px;
    background-color: white;
    border-radius: 20px;
    flex-basis: 300px;
    margin: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    i {
      color: var(--primaryColor);
      font-size: 45px;
    }

    p {
      color: black;
      text-align: center;
      width: 90%;
      opacity: 1;
    }
  }
}

.listContent {
  h3 {
    font-size: medium;
  }

  ol {
    text-align: start;
  }
  ol li {
    font-size: 19px;
    line-height: 3;
    text-align: start;
  }

  a {
    font-size: 19px;
    color: pink;
    text-align: start;
  }
}

.footer {
  background-color: #1a1a1a;
  width: 100%;
  padding: 50px 0;
  border-top: 1px solid var(--primaryColor);

  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;

  ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;

    li {
      list-style-type: none;
      padding: 20px;

      a {
        text-decoration: none;
        font-size: larger;
        font-weight: 500;
      }
    }
  }

  h4 a {
    color: var(--primaryColor);
    text-decoration: none;
  }
}

.developer-watermark {
  position: fixed;
  bottom: 20px;
  right: 10px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

#fp {
  /* Developed by VASU & heart */
  text-align: center;
  font-size: 0.9rem;
  padding: 7px;
}
