@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", serif;
}

:root {
  --white: #fff;
  --black: #000;
  --primary: #103959;
  --secondry: #fc8618;
  --mainTitle: 40px;
  --headning: 25px;
  --paragraph: 17px;
}

html {
  scroll-behavior: smooth;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.navbarSection {
  padding: 15px 0;
  background-color: #fffcf8;
  border-bottom: 1px solid #e5e5e5;
}

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

.logo img {
  width: 125px;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  mix-blend-mode: darken;
}

.navMenu {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.navMenu a:hover .material-symbols-outlined {
  color: red;
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}

.navMenu a:hover {
  color: var(--secondry);
}

.navMenu a .material-symbols-outlined {
  font-size: 21px;
}

.navMenu a {
  font-size: 17px;
  font-weight: 400;
  color: var(--black);
  transition: 0.3s ease all;
  align-items: center;
  text-decoration: none;
  display: flex;
  gap: 3px;
}

.joinBtn button:hover {
  background-color: transparent;
  color: var(--black);
}

.joinBtn button {
  padding: 8px 35px;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  transition: 0.3s ease all;
  color: var(--white);
  border-radius: 10px;
}

.homeSection {
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.homeImg {
  width: 100%;
}
.homeSection .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.homeHead {
  width: 49%;
}
.homeImg img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.homeHead p {
  text-transform: capitalize;
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}

.homeHead h3 {
  font-size: 50px;
  font-weight: 700;
}

.homeHead h5 {
  font-size: 19px;
  font-weight: 500;
}

.homeHead button {
  padding: 9px 30px;
  border: 1px solid #103959;
  border-radius: 10px;
  margin-top: 15px;
  background-color: #103959;
  color: #fff;
}

.aboutContainer {
  display: flex;
}

section.aboutSection {
  padding: 50px 0;
}

.aboutImg {
  justify-content: end;
  display: flex;
}

.aboutImg img {
  width: 50%;
  height: auto;
  object-fit: contain;
}

.aboutHead h3 span {
  color: var(--primary);
}

.aboutHead h3 {
  font-size: 40px;
  font-weight: 600;
}

.aboutList li span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.aboutList li span {
  width: 50px;
  height: 50px;
  overflow: hidden;
  /* box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); */
  border-radius: 50%;
  /* background-color: #fff; */
  padding: 10px;
}

.aboutList li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.aboutList {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  gap: 20px;
}

.aboutHead p {
  font-size: 14px;
  font-weight: 500;
}

.aboutSwiperCard {
  display: flex;
  justify-content: end;
}

.categoryContainer {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin-top: 35px;
  justify-content: space-evenly;
}

.categoryCard div {
  background-color: #f6f6f6;
  width: 150px;
  height: 150px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
}

.categoryCard div img {
  width: 70%;
  height: 70%;
  transition: 0.3s ease all;
  object-fit: contain;
  mix-blend-mode: darken;
  object-position: center;
}

.categoryCard div img:hover {
  transform: scale(120%);
}

.categoryCard {
  display: flex;
  transition: 0.3s ease all;
  align-items: center;
  cursor: pointer;
  flex-direction: column;
  gap: 10px;
}

.categorySection h3 {
  font-size: 40px;
  font-weight: 600;
}

.categorySection {
  padding: 50px 0;
}

.aboutList div {
  width: 90%;
}

.categoryCard p {
  font-size: 16px;
  font-weight: 500;
}

.productSection h3 {
  font-size: 40px;
  font-weight: 600;
}

.productSection {
  padding: 50px 0;
}

.productContainer {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
}

.productContainer ul li button {
  font-size: 15px;
  color: #000;
  padding: 9px 30px;
}

.productContainer ul li button.active {
  background-color: var(--primary) !important;
  /* padding: 9px 30px; */
  border-radius: 20px;
}

.productContainer ul {
  border: 1px solid #10395959;
  padding: 6px;
  border-radius: 25px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.productCard .productImg {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f6f6f6;
}

.productCard .productImg img {
  width: 80%;
  mix-blend-mode: darken;
  object-fit: contain;
  height: 80%;
}

.productCard .price span {
  font-size: 15px;
  font-weight: 500;
  color: red;
}

.productCard .price b {
  font-size: 20px;
}

.productCard .price {
  display: flex;
  align-items: center;
  gap: 15px;
}

.productCard p {
  font-size: 12px;
  font-weight: 500;
  color: #595959;
  margin: 0;
  margin-bottom: 8px;
}

.productCard h5 {
  font-weight: 600;
  font-size: 18px;
}

.productCard .cardHead {
  padding: 13px;
}

.productCard {
  border: 1px solid #d7d7d7;
  width: 260px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 15px;
}

.productCardDiv {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bannerSection {
  padding: 70px 0;
}

footer {
  background-color: #f7f8fc;
  padding: 50px 0 0 0;
}

.footerMenu .social img:hover {
  transform: scale(110%);
}

.footerMenu .social img {
  width: 30px;
  height: 30px;
  cursor: pointer;
  object-fit: contain;
  transition: 0.3s ease all;
}

.footerMenu .social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footerContainer {
  display: flex;
}

.footerLogo p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 10px;
}

.footerMenu .footerInputFeald {
  border: 1px solid #c1c1c1;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-left: 7px;
}

.footerMenu h4 {
  font-size: 20px;
  font-weight: 600;
}

.footerMenu h3 {
  font-size: 20px;
  font-weight: 600;
}

.footerInputFeald button:hover {
  background-color: transparent;
  color: #000;
}

.footerInputFeald button {
  background-color: var(--primary);
  border: none;
  border-left: 1px solid var(--primary);
  transition: 0.3s ease all;
  height: 100%;
  padding: 10px 30px;
  color: #fff;
}

.footerInputFeald .material-symbols-outlined {
  font-size: 30px;
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}

.footerInputFeald input {
  background-color: transparent;
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  font-size: 14px;
  padding-left: 5px;
  font-weight: 500;
}

.newsletterPara {
  font-size: 14px;
  font-weight: 400;
  color: #5b5b5b;
}

.footerLogo img {
  width: 150px;
  height: auto;
  cursor: pointer;
  mix-blend-mode: darken;
  object-fit: contain;
}

.footerMenuList a:hover {
  color: var(--primary);
}

.footerMenuList a {
  color: #103959;
  text-decoration: none;
  transition: 0.3s ease all;
  font-size: 16px;
  font-weight: 600;
}

.footerMenuList {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.copyright {
  display: flex;
  text-align: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  margin-top: 50px;
  background-color: antiquewhite;
  padding: 4px;
}

/* FAQ SECTOION START HERE */
/*start styles*/
.accordionFaq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.accordion__item {
  border: 1px solid #fdb93a61;
  border-radius: 10px;
  overflow: hidden;
}

.accordion__header {
  padding: 20px 25px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.accordion__header::after {
  content: "";
  background: url(https://www.svgrepo.com/show/357035/angle-down.svg) no-repeat
    center;
  width: 20px;
  height: 20px;
  transition: 0.4s;
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
}

.accordion__header.active {
  background: #e5f3fa;
}

.accordion__header.active::after {
  transform: rotateX(180deg);
}

.accordion__item .accordion__content {
  padding: 0 25px;
  max-height: 0;
  transition: 0.5s;
  overflow: hidden;
}

.faqSection {
  margin: 70px 0;
}

.faqSection h3 span {
  color: var(--primary);
}

.faqSection h3 {
  font-size: 40px;
  text-align: start;
  margin-bottom: 20px;
  font-weight: 600;
  color: #0e2e3d;
}

.counterContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.counterCard p {
  font-size: 17px;
  width: 100%;
  background: var(--primary);
  color: var(--white);
  margin: 0;
  padding: 0;
  text-align: center;
}

.counterCard h3 {
  font-size: 30px;
  font-weight: 600;
  height: 90%;
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.counterCard {
  border: 1px solid var(--primary);
  width: 200px;
  height: 130px;
  border-radius: 5px;
  display: flex;
  cursor: pointer;
  background-color: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.counterSection {
  background-color: #e6faef;
  padding: 30px 0;
  margin: 50px 0;
}

.reviewHead img {
  width: 40px;
  height: auto;
  object-fit: contain;
}

.reviewHead div .material-symbols-outlined {
  color: #f4b304;
  font-size: 20px;
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}

.reviewHead div {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #10395973;
  border-radius: 5px;
  padding: 3px;
  background-color: #e6faef;
  gap: 3px;
  font-size: 13px;
  font-weight: 500;
}

.reviewHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.reviewCard label {
  display: flex;
  text-align: end;
  width: 100%;
  justify-content: end;
  font-size: 14px;
  font-weight: 400;
}

.reviewCard p {
  font-size: 14px;
  font-weight: 500;
}

.reviewCard {
  width: 400px;
  border: 1px solid #10395961;
  cursor: pointer;
  /* background-color: #E6FAEF; */
  background-color: #edfff5;
  padding: 20px;
  border-radius: 20px;
}

.reviewSection {
  display: none;
  padding: 50px 0;
}

.reviewSection h3 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.appContainer {
  padding: 20px 0;
  border-radius: 20px;
  display: flex;
}

.appHead button:hover {
  background-color: transparent;
  color: #000;
}

.appHead button {
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 40px;
  font-size: 14px;
  transition: 0.3s ease all;
  font-weight: 400;
  border: 1px solid var(--primary);
  border-radius: 10px;
}

.appHead p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.23;
  color: #777777;
}

.appHead h3 span {
  color: var(--primary);
}

.appHead h3 {
  font-size: 40px;
  font-weight: 700;
}

.appHead {
  padding-left: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.appImg {
  display: flex;
  justify-content: center;
}

.appImg img {
  height: 400px;
  object-fit: contain;
  cursor: pointer;
}

section.appSection {
  padding: 50px 0;
  border: 1px solid #e3e3e3;
}

.gallerySwiperImg img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.gallerySection h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

section.gallerySection {
  padding-bottom: 50px;
}
.footerMoreDetails {
}
.footerMoreDetails li {
  list-style: none;
  font-size: 15px;
  margin-bottom: 3px;
  font-weight: 600;
}
.footerMoreDetails li span {
  color: #103959;
  text-transform: capitalize;
}
.footerMenuCenter {
  padding-left: 100px;
}
.customBtn {
  background-color: #103959;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 20px;
}

@media screen and (max-width: 1500px) {
  .banner {
    height: 500px;
  }
}
@media screen and (max-width: 1366px) {
  .gallerySwiperImg img {
    height: 400px;
  }

  .reviewCard {
    width: 300px;
  }
}

@media screen and (max-width: 768px) {
  .homeSection {
    background-attachment: scroll;
  }

  .gallerySwiperImg img {
    height: 400px;
  }

  .reviewCard {
    width: 300px;
  }

  .aboutContainer {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }

  section.aboutSection {
    padding: 20px 0;
  }

  .gallerySwiperImg img {
    width: auto;
  }

  .swiper-backface-hidden .swiper-slide {
    text-align: center;
  }

  .aboutHead h3 {
    font-size: 28px;
  }

  .aboutHead p {
    font-size: 12px;
  }

  .aboutList li span {
    width: 40px;
    height: 40px;
  }

  .aboutList div {
    font-size: 12px;
  }

  .aboutList {
    margin-top: 10px;
  }

  .aboutImg img {
    height: 400px;
    width: 200px;
  }

  .aboutSwiperCard {
    display: flex;
    justify-content: center;
  }

  section.appSection {
    padding: 20px 0;
  }

  .appContainer {
    padding: 25px;
  }

  .appHead {
    padding: 15px;
  }

  .appImg img {
    height: 150px;
  }

  .appHead h3 {
    font-size: 26px;
  }

  .appHead p {
    font-size: 12px;
  }

  .appHead button {
    padding: 5px 12px;
    font-size: 12px;
    margin-top: 12px;
  }

  .banner {
    height: 251px;
  }
}

@media screen and (max-width: 450px) {
  .logo img {
    width: 60px;
  }

  .navMenu {
    display: none;
  }
  .homeHead {
    width: 100%;
  }
  .homeImg {
    width: 100%;
  }
  .joinBtn button {
    padding: 5px 15px;
    font-size: 12px;
  }
  .homeSection .container {
    flex-direction: column-reverse;
  }

  .homeSection {
    background-attachment: scroll;
  }

  .homeHead h3 {
    font-size: 32px;
  }

  .homeHead h5 {
    font-size: 16px;
  }

  .homeHead button {
    padding: 9px 12px;
    font-size: 12px;
  }

  .aboutContainer {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  section.aboutSection {
    padding: 50px 0;
  }

  .gallerySwiperImg img {
    width: auto;
  }

  .swiper-backface-hidden .swiper-slide {
    text-align: center;
  }

  .aboutHead h3 {
    font-size: 28px;
  }

  .aboutHead p {
    font-size: 12px;
  }

  .aboutList li span {
    width: 40px;
    height: 40px;
  }

  .aboutList div {
    font-size: 12px;
  }

  .aboutList {
    margin-top: 10px;
  }

  .aboutImg img {
    height: 300px;
    width: 200px;
  }

  .aboutSwiperCard {
    display: flex;
    justify-content: center;
  }

  p {
    margin-top: 0;
    margin-bottom: 0;
  }

  .bannerSection {
    padding: 15px 0;
  }

  .banner {
    height: 150px;
  }

  .counterContainer {
    gap: 10px;
    flex-wrap: wrap;
  }

  .counterSection {
    padding: 30px 0;
    margin: 5px 0;
  }

  .counterCard {
    width: 190px;
    height: 100px;
  }

  .gallerySection h3 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .gallerySwiperImg img {
    height: 250px;
  }

  section.gallerySection {
    padding-bottom: 0px;
    margin: 50px 0;
  }

  section.appSection {
    padding: 20px 0;
  }

  .appContainer {
    padding: 25px;
  }

  .appHead {
    padding: 15px;
  }

  .appImg img {
    height: 150px;
  }

  .appHead h3 {
    font-size: 20px;
  }

  .appHead p {
    font-size: 12px;
  }

  .appHead button {
    padding: 5px 12px;
    font-size: 12px;
    margin-top: 12px;
  }

  .faqSection {
    margin: 20px 0;
  }

  .faqSection h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .accordionFaq {
    gap: 5px;
  }

  .accordion__header {
    padding: 8px 12px;
    font-size: 12px;
  }

  .accordion__header::after {
    width: 15px;
    top: 5px;
  }

  .accordion__content p {
    font-size: 12px;
  }

  footer {
    padding: 24px 0 0 0;
  }

  .footerContainer {
    gap: 20px;
    flex-direction: column;
    padding-inline: 20px;
  }

  .footerLogo img {
    width: 70px;
  }

  .footerLogo p {
    font-size: 11px;
  }

  .footerMenu h4 {
    font-size: 14px;
  }

  .footerMenu .social {
    gap: 5px;
  }

  .footerMenu .social img {
    width: 20px;
    height: 20px;
  }

  .footerMenu h3 {
    font-size: 14px;
  }

  .footerMenuList a {
    font-size: 12px;
  }

  .newsletterPara {
    font-size: 12px;
  }

  .footerInputFeald .material-symbols-outlined {
    font-size: 24px;
  }

  .footerInputFeald input {
    font-size: 12px;
  }

  .footerInputFeald button {
    padding: 5px 22px;
    font-size: 12px;
  }

  .copyright {
    font-size: 10px;
    margin-top: 30px;
  }
  .footerMenuCenter {
    padding-left: 0;
  }
  .footerMoreDetails li {
    font-size: 13px;
    font-weight: 500;
  }
  a.customBtn {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 350px) {
  a.customBtn {
    margin-top: 10px;
  }
}
