@font-face {
  font-family: "Janna LT";
  src: url("../fonts/Janna LT Regular.woff2") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Janna LT";
  src: url("../fonts/Janna LT Bold.woff2") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --fs-88: clamp(5.4rem, 4vw, 8.8rem);
  --fs-64: clamp(4.8rem, 4vw, 6.4rem);
  --fs-48: clamp(3.8rem, 4vw, 4.8rem);
  --fs-44: clamp(3.4rem, 4vw, 4.4rem);
  --fs-40: clamp(3rem, 4vw, 4rem);
  --fs-36: clamp(3rem, 3.5vw, 3.6rem);
  --fs-32: clamp(2.6rem, 3vw, 3.2rem);
  --fs-24: clamp(1.9rem, 2vw, 2.4rem);
  --fs-21: clamp(1.8rem, 1.8vw, 2.1rem);
  --fs-20: clamp(1.7rem, 1.6vw, 2rem);
  --fs-19: clamp(1.6rem, 1.5vw, 1.9rem);
  --fs-18: clamp(1.5rem, 1.4vw, 1.8rem);
  --fs-16: clamp(1.4rem, 1.2vw, 1.6rem);
  --fs-12: clamp(1.2rem, 1.2vw, 1.2rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Janna LT", sans-serif;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: var(--bs-white);
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 991px) {
  html {
    font-size: 60%;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 55%;
  }
}

/* ----------------------------navbar----------------------- */
.nav-links a {
  color: var(--bs-gray-400);
  font-size: var(--fs-16);
  font-weight: 400;
  min-width: 7rem;
  text-align: center;
  transition: 0.4s ease;
  white-space: nowrap;
}

.nav-link-item{
  width: 12rem;
}

.nav-links a.active,
.nav-links a:hover,
.nav-links a.active:hover {
  color: var(--bs-white);
  font-weight: 700;
}

/* ----------------------------sidebar----------------------- */
.offcanvas {
  background-color: var(--bs-white);
}

.offcanvas-body a {
  font-size: var(--fs-18);
  color: var(--bs-dark);
  padding: 1rem 0;
  display: block;
  text-align: center;
  border: 0.1rem solid var(--bs-gray-700);
  border-radius: 0.8rem;
  transition: 0.3s;
  font-weight: 500;
}

.offcanvas-body a:hover {
  background-color: var(--bs-green);
  color: var(--bs-light);
}

.offcanvas-header h5 {
  font-size: var(--fs-20);
  color: var(--bs-dark);
  font-weight: 700;
}

.btn-close {
  background-color: var(--bs-danger);
  width: 3rem;
  height: 3rem;
  color: var(--bs-white);
  border-radius: 0.8rem;
}

#mobileMenu.offcanvas {
  width: 30rem;
  max-width: 90vw;
}

/* -----------------------footer----------------------- */
.footer {
  background: url("../images/footer-bg.png") no-repeat center/cover;
  position: relative;
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bs-green);
  opacity: 0.9;
  z-index: -1;
}

.primary-logo p {
  color: var(--bs-white);
  font-size: var(--fs-36);
  font-weight: 700;
}

.footer h3 {
  color: var(--bs-white);
  font-size: var(--fs-16);
  font-weight: 700;
}

.footer .icons .icon-item {
  border: 1px solid var(--bs-white);
  border-radius: 50%;
  width: 3.2rem;
  height: 3.2rem;
}

.download .app-store,
.download .google-play {
  width: fit-content;
  background: transparent;
  border-radius: 0.8rem;
  border: 1px solid var(--bs-white);
}

.download span {
  color: var(--bs-white);
  font-size: var(--fs-12);
  font-weight: 700;
}

.home h3,
.contact-us h3 {
  color: var(--bs-white);
  font-size: var(--fs-24);
  font-weight: 700;
}

.home ul li,
.contact-us div span {
  color: var(--bs-white);
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: 2.4;
}

.copy-right {
  border-top: 1px solid var(--bs-gray-600);
}

.copy-right p {
  color: var(--bs-white);
  font-size: var(--fs-20);
  font-weight: 400;
}

/* ----------------------app store and google play button styles----------------------- */
.app-store,
.google-play {
  width: 13.3rem;
  height: 4.8rem;
  background-color: var(--bs-white);
  border-radius: 0.8rem;
}

.play span {
  color: var(--bs-black);
  font-size: var(--fs-12);
  font-weight: 700;
}

/* -------------------loading----------------------- */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.3s;
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}