/* font */

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

body {
  background-color: #eef5ff;
  font-family: "poppins", sans-serif;
  user-select: none;
  margin: 0px;
  font-size: 16px;
}

/* nav */

.sajjad-nav {
  display: flex;
  margin: 10px;
  border-radius: 20px;
  border: 1px solid #888;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.brand img {
  width: 30px;
  height: 30px;
  margin-right: 7px;
  border-radius: 50%;
  vertical-align: middle;
}

.logo {
  font-size: 25px;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: 0.5px;
  vertical-align: middle;
}

.accent {
  color: #444;
  margin-left: 5px;
}

.tagline {
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .sajjad-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
  .tagline {
    font-size: 0.9rem;
  }
}

/* subscription plan */

.subscription-plan h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  justify-content: center;
  align-items: center;
}

.plan-cards img {
  margin: 6px;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.plan-cards span {
  color: #999;
}

.plan-cards h3 {
  color: black;
  display: inline-block;
}

.plan-cards button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  margin: 20px 0px;
  border: none;
  border-radius: 7px;
  color: white;
  background-color: rgb(0, 76, 255);
  padding: 10px;
  transition: all 0.3s ease;
}

.plan-cards button:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.basic {
  grid-area: 1 / 1 / 2 / 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  width: 300px;
  height: auto;
  margin: auto;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 30px 10px;
  transition: all 0.3s ease;
}

.basic:hover {
  box-shadow: 0px 4px 6px gray;
  transform: scale(1.01);
  border-color: #888;
}

.pro {
  grid-area: 1 / 2 / 2 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  width: 300px;
  height: auto;
  margin: auto;
  margin-top: 30px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 30px 10px;
  transition: all 0.3s ease;
}

.pro:hover {
  box-shadow: 0px 4px 6px gray;
  transform: scale(1.01);
  border-color: #888;
}

.premium {
  grid-area: 1 / 3 / 2 / 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  width: 300px;
  height: auto;
  margin: 30px auto;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 30px 10px;
  transition: all 0.3s ease;
}

.premium:hover {
  box-shadow: 0px 2px 4px gray;
  transform: scale(1.01);
  border-color: #888;
}

@media (max-width: 1024px) {
  .basic {
    width: 90%;
  }
  .pro {
    width: 90%;
  }
  .premium {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .plan-cards {
    display: block;
  }
  .basic {
    width: 70%;
  }
  .pro {
    width: 70%;
  }
  .premium {
    width: 70%;
  }
}
