@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mozilla+Headline:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");
:root {
  --primary-color: #1f6306;
  --secondary-color: #f6f2e3;
  --third-color: #3b5265;
  --fourth-color: #051824;
  --jost: "Jost", serif;
  --dancing-script: "Dancing Script", cursive;
  --ss: sans-serif;
  --default-transition: 350ms;
  --white: #fff;
  --black: #000000;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: var(--jost);
  user-select: unset;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.text-line {
  text-decoration: line-through;
}
.text-underline {
  text-decoration: underline !important;
}
.grid {
  position: relative;
  display: grid;
  gap: 1rem;
}
.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 992px) {
  .grid-5,
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-5,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .grid-5,
  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 400px) {
  .grid-5,
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.bg-transparent {
  background: transparent;
}
.bg-blur {
  background: transparent;
  backdrop-filter: blur(3px);
}
.text-primary {
  color: var(--primary-color) !important;
}
.bg-primary {
  background: var(--primary-color) !important;
}
.text-secondary {
  color: var(--secondary-color) !important;
}
.bg-secondary {
  background: var(--secondary-color) !important;
}
.text-third {
  color: var(--third-color) !important;
}
.bg-third {
  background: var(--third-color);
}
.text-fourth {
  color: var(--fourth-color) !important;
}
.bg-fourth {
  background: var(--fourth-color);
}
p {
  margin-bottom: 0;
}
body {
  overflow-x: hidden;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
input:focus:not(input[type="checkbox"]),
textarea:focus {
  box-shadow: 0 0 1px 3px var(--primaryopacitycolor);
  border-color: var(--primarycolor) !important;
}
input:user-invalid,
textarea:user-invalid {
  box-shadow: 0 0 1px 3px #f005 !important;
  border-color: #f00 !important;
}

.sans-serif {
  font-family: var(--ss);
}
.jost {
  font-family: var(--jost);
}
.dancing-script {
  font-family: var(--dancing-script);
}
.dancing-script * {
  font-family: inherit;
}
strong {
  font-family: inherit;
}
.quick-contact a svg {
  fill: var(--primary-color);
}
a {
  color: var(--primary-color);
  text-decoration: none;
}
a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
.min-h-100 {
  min-height: 100dvh;
}
.main-heading {
  position: relative;
  font-size: 50px;
  font-family: var(--dancing-script);
  color: var(--primary-color);
  text-align: center;
}
.main-heading * {
  font-family: inherit;
}
@media (max-width: 992px) {
  .main-heading {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .main-heading {
    font-size: 28px;
  }
}
.owl-stage {
  display: flex;
  align-items: stretch;
}
.owl-stage .item {
  height: 100%;
}
.owl-dots {
  display: flex;
  gap: 1rem;
  padding: 2rem 0;
  justify-content: center;
}
.owl-dots button {
  position: relative;
  width: 12px;
  aspect-ratio: 1;
  background: var(--secondary-color) !important;
  transition: var(--default-transition);
}
.owl-dots button.active {
  background: var(--white) !important;
  border-radius: 50%;
}
.owl-nav {
  position: absolute;
  display: flex;
  gap: 1px;
  bottom: 0;
  right: 0;
}
.owl-nav button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  aspect-ratio: 1;
  background: var(--primary-color) !important;
  color: var(--white) !important;
}
.owl-nav button:is(:hover, :active, :focus) {
  background: var(--secondary-color) !important;
  color: var(--primary-color) !important;
}
.logo {
  font-size: 3rem;
  text-transform: uppercase;
  font-family: var(--ss);
  font-weight: 600;
}
.logo img {
  max-width: 190px;
}
@media (max-width: 576px) {
  .logo img {
    max-width: 90%;
  }
}

.hamburger {
  cursor: pointer;
}
header {
  background: var(--white);
}
header .marquee {
  height: 40px;
}
header .nav-links {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 8px;
  justify-content: center;
}
header .nav-links a {
  position: relative;
  display: block;
  text-transform: capitalize;
  padding: 1px 6px;
  font-size: 18px;
}
header .nav-links a::before {
  position: absolute;
  content: "";
  background: var(--primary-color);
  height: 2px;
  right: 0;
  bottom: 0;
  width: 0%;
  transition: var(--default-transition);
}
header .nav-links a:is(:hover, .active, :focus, :active) {
  text-decoration: none;
}
header .nav-links a:is(:hover, .active, :focus, :active)::before {
  width: 100%;
  left: 0;
  right: auto;
}
header .nav-links > li:has(ul) {
  position: relative;
}
header .nav-links > li:has(ul) ul {
  position: absolute;
  z-index: 200;
  min-width: 200px;
  top: calc(100% + 2rem);
  padding: 2px;
  background: var(--white);
  border: 1px solid var(--primary-color);
  transition: var(--default-transition);
  opacity: 0;
  visibility: hidden;
}
header .nav-links > li:has(a:is(:hover, :active, :focus)) ul {
  opacity: 1;
  top: calc(100% + 2px);
  visibility: visible;
}
header a svg {
  fill: var(--black);
}
header a:is(:hover, :focus, :active) svg {
  fill: var(--primary-color);
}
header .header-icons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}
@media (max-width: 768px) {
  header .header-icons {
    justify-content: space-between;
  }
}
.alert-animation {
  filter: hue-rotate(270deg);
  animation: alert 0.72s linear infinite;
}
@keyframes alert {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header .header-icons svg {
  fill: var(--primary-color);
  display: block;
}
header .header-icons span {
  height: 30px;
  width: 1px;
  background: var(--black);
}
#menu-offcanvas .offcanvas-body ul li a {
  position: relative;
  display: block;
  padding: 8px;
  font-size: 17px;
  transition: var(--default-transition);
  text-transform: capitalize;
}
#menu-offcanvas .offcanvas-body ul li a:is(:hover, :focus, :active, .active) {
  background: var(--primary-color);
  color: var(--white);
}
#menu-offcanvas .drop-list {
  background: #0002;
  margin-left: 8px;
}
#menu-offcanvas .drop-list li a {
  font-size: 14px !important;
}
.product-card {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--primary-color);
  perspective: 1200px;
  transition: var(--default-transition);
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 3px var(--primary-color);
}
.product-card img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  transition: var(--default-transition);
  transform-style: preserve-3d;
}
.product-card .imgBx {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1200px;
}
.product-card .imgBx .img-1 {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.product-card .imgBx .img-2 {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 1;
  transform: rotateY(180deg);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.product-card:hover .imgBx .img-2 {
  transform: rotateY(0);
}
.product-card:hover .imgBx:has(.img-2) .img-1 {
  transform: rotateY(-180deg);
}
.product-card h6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.toolbar-item {
  display: block;
  position: relative;
  z-index: 2;
  font-size: 0;
  letter-spacing: 0;
}

.toolbar-item .toolbar-icon {
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  height: 26px;
  padding: 3px;
  border: 1px solid #333;
  opacity: 0.5;
}

.toolbar-item .toolbar-icon.active {
  opacity: 1;
}

.toolbar-item .toolbar-icon.grid-2 {
  width: 19px;
}

.toolbar-item .toolbar-icon.grid-4 {
  width: 33px;
}

.toolbar-item .toolbar-icon .icon {
  width: 20px;
  height: 100%;
}

.toolbar-item .toolbar-icon.grid-5,
.toolbar-item .toolbar-icon.grid-4,
.toolbar-item .toolbar-icon.grid-3 {
  /* display: none; */
}

.toolbar-item .toolbar-icon.active {
  background-color: var(--bg-white);
}

.toolbar-item .toolbar-icon + .toolbar-icon {
  margin-left: 5px;
}

.toolbar-item .toolbar-icon.icon-mode {
  position: relative;
  cursor: pointer;
}

.toolbar-item .toolbar-icon:before {
  width: 4px;
  height: 18px;
}

.toolbar-item .toolbar-icon.icon-mode:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  background-color: #333;
}

.toolbar-item .toolbar-icon.icon-mode.active:before {
  background-color: #333;
}

.toolbar-item .toolbar-icon.icon-mode-list:before {
  width: 18px;
  height: 4px;
  box-shadow: 0 7px 0 #333, 0 14px 0 #333;
}

.toolbar-item .toolbar-icon.icon-mode-list.active:before {
  box-shadow: 0 7px 0 #333, 0 14px 0 #333;
}

.toolbar-item .toolbar-icon.grid-2:before {
  box-shadow: 7px 0 0 #333;
}

.toolbar-item .toolbar-icon.grid-3:before {
  box-shadow: 7px 0 0 #333, 14px 0 0 #333;
}

.toolbar-item .toolbar-icon.grid-4:before {
  box-shadow: 7px 0 0 #333, 14px 0 0 #333, 21px 0 0 #333;
}

.toolbar-col .toolbar-item {
  display: inline-block;
  vertical-align: middle;
}
.grid-list-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--col), 1fr);
  gap: 1rem;
}

.grid-list-container.col4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-list-container.col3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-list-container.col2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-list-container.col1 {
  grid-template-columns: repeat(1, 1fr);
}

@media (max-width: 540px) {
  .grid-list-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Category Page */
.filter-row select.sort-display-data {
  background: transparent;
  padding: 6px 8px;
  border: 1px solid #999999;
  border-radius: 0 !important;
}

.filter-row select.sort-display-data:focus {
  outline-color: var(--primarycolor);
}

.btn {
  position: relative;
  z-index: 0;
  border-radius: 0px;
}
.btn::before {
  position: absolute;
  content: "";
  right: 0;
  width: 0;
  height: 100%;
  top: 0;
  background: var(--black);
  transition: var(--default-transition);
  z-index: -1;
}
.btn:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.btn:hover {
  color: var(--white);
}

.card {
  transition: var(--default-transition);
}
.card:hover {
  box-shadow: 5px 5px 0 0 var(--white);
}
.fixed-btn a,
.fixed-btn .btn {
  position: fixed;
  bottom: 4rem;
  right: 1rem;
  width: 45px;
  height: 45px;
  z-index: 9999;
  display: flex;
  color: var(--bg-white);
  font-size: 1.4rem;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.fixed-btn a.whatsapp {
  background: var(--bs-success);
}
.fixed-btn #bottomtotop {
  right: -6rem;
  transition: var(--default-transition);
  bottom: 8rem;
  color: var(--primary-color) !important;
}
.fixed-btn #bottomtotop:hover {
  border: none;
}
.fixed-btn #bottomtotop::before {
  content: "";
  position: absolute;
  width: unset;
  height: unset;
  border-radius: 50%;
  inset: 4px;
  background: var(--secondary-color);
}
.fixed-btn #bottomtotop.active {
  right: 1rem;
}

.home-slider {
  position: relative;
}
footer {
  position: relative;
  background: linear-gradient(45deg, var(--primary-color), #0f2308, #0f2308);
  z-index: 0;
}
footer::before {
  position: absolute;
  content: "";
  inset: 0;
  background: url("../img/footer.png");
  z-index: -1;
  background-size: 100%;
  opacity: 0.1;
  background-repeat: no-repeat;
  background-position: center bottom;
}
footer a,
footer a:hover {
  color: var(--white);
  transition: var(--default-transition);
}
footer a:hover {
  letter-spacing: 1px;
}
footer svg {
  fill: var(--white) !important;
  min-width: 24px;
}
section .testimonials img {
  max-width: 140px;
  display: inline-block;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0.4rem auto;
}
section .testimonials .item {
  position: relative;
  z-index: 0;
}
section .testimonials .item::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transition: var(--default-transition);
  background: var(--secondary-color);
  z-index: -1;
}
section .testimonials .owl-item:hover .item::before,
section .testimonials .owl-item.active.center .item::before {
  height: 100%;
}
.testimonials .owl-dots button {
  border: 1px solid var(--primary-color);
  background: white !important;
  border-radius: 50%;
}
.testimonials .owl-dots button.active {
  background: var(--primary-color) !important;
}
.popular-category .row img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--white);
  border-radius: 50%;
  margin-bottom: 0.5rem;
  transition: var(--default-transition);
  cursor: pointer;
  padding: 1rem;
}
.popular-category .row .col-6:hover img {
  transform: translateY(-3px);
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
}
.popular-category .row h6 {
  text-align: center;
  font-weight: normal;
}

.before-after-slider {
  position: relative;
  display: flex;
  aspect-ratio: 5;
}
.before-after-slider > * {
  position: relative;
  height: 100%;
  width: 50%;
  background: url(../img/before.jpg);
  background-size: cover;
}
.before-after-slider > .after {
  background: url(../img/after.jpg);
  background-size: cover;
}
.before-after-slider .text-white.border {
  backdrop-filter: blur(5px);
}
@media (max-width: 576px) {
  .before-after-slider {
    flex-direction: column;
    aspect-ratio: unset;
  }
  .before-after-slider > * {
    width: 100%;
  }
}

.faq-section .faq-wrapper {
  position: relative;
  cursor: pointer;
  transition: var(--default-transition);
}
.faq-section .container:hover .faq-wrapper:not(:hover) {
  transform: scale(0.96);
  filter: grayscale(1) blur(2px);
}
.faq-section .faq-wrapper:hover {
  box-shadow: -5px -5px 0px 0px var(--primary-color),
    5px 5px 0px 0px var(--secondary-color);
  border-color: var(--primary-color) !important;
  transform: scale(1.01);
}
.faq-section .faq-wrapper:last-child {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .faq-section .faq-wrapper:last-child {
    grid-column: span 1;
  }
}
.faq-section .faq-wrapper h4 {
  color: var(--primary-color);
}

.blogs-section .card {
  overflow: hidden;
  padding-bottom: 1rem;
  height: 100%;
}
.blogs-section .card .imgBx {
  overflow: hidden;
  margin-bottom: 1rem;
}
.blogs-section .card .imgBx img {
  width: 100%;
  aspect-ratio: 2;
  object-fit: cover;
  transition: var(--default-transition);
}
.blogs-section .card:hover img {
  transform: scale(1.05) rotate(2deg);
}
.blogs-section .card :is(h4, p) {
  padding: 0 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-height: 1.5;
}

/* Product Page */
.product-page {
  position: relative;
}
.product-page-slider img {
  aspect-ratio: 1;
  object-fit: contain;
}
.pd-pro-qty {
  display: inline-flex;
  align-items: center;
  user-select: none;
  border: 1px solid;
  margin: 4px 0;
}

.pd-pro-qty input {
  text-align: center;
  height: 35px;
  display: block;
  background: #e3e3e3a3;
  outline: none;
  border: none;
}
table .pd-pro-qty input {
  width: 100px;
}
.pd-pro-qty span {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  min-width: 35px;
  aspect-ratio: 1;
}

.cart-table tr td {
  min-width: 150px;
}
#checkoutform label.paymentmodecheck {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
  width: 100%;
  height: 100%;
  border: 1px solid var(--black);
  left: 0;
  height: 55px;
  cursor: pointer;
  background: var(--black);
  color: #fff;
}

#checkoutform label.paymentmodecheck input {
  box-shadow: none;
  appearance: none;
  position: absolute;
  width: 0;
  border: none;
}

#checkoutform label.paymentmodecheck:has(input:checked) {
  background: var(--primary-color);
}

.form-group {
  position: relative;
}
.form-group .showpassword {
  position: absolute;
  right: 7px;
  width: 24px;
  cursor: pointer;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 7px;
}
.form-group:has(.showpassword) input {
  padding-right: 38px;
}

.fixedbg-section {
  position: relative;
  background: linear-gradient(#0003, #0003), url("../img/nadi-pariksha.jpg");
  background-size: cover;
  background-position: center;
  min-height: 70dvh;
  display: flex;
  align-items: center;
}
.fixedbg-section .content {
  position: relative;
  border: 1px solid rgba(255 255 255 / 0.15);
  background-color: rgba(255 255 255 / 0.06);
  border-radius: 10px;
  padding: 40px 50px 60px;
  text-align: center;
  backdrop-filter: blur(2px);
  color: #fff;
}

.services-page-1 {
  background-image: url("../img/services/pariksha-bg1.jpg");
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 50px 100px;
  background-size: cover;
}
.services-page-1 div {
  width: 500px;
}
@media (max-width: 500px) {
  .services-page-1 {
    padding: 10px;
  }
  .services-page-1 div {
    width: 300px;
  }
}

.new-tp {
  backdrop-filter: blur(0px) saturate(200%);
  -webkit-backdrop-filter: blur(9px) saturate(200%);
  background-color: rgba(255, 255, 255, 0.42);
  border-radius: 12px;
  border: 1px solid rgba(209, 213, 219, 0.3);
}

.banner {
  text-align: center;
  background-image: url("../img/ogbg.jpg");
  padding: 100px;
  background-size: cover;
}
.banner h2 {
  font-size: 50px;
}
@media (max-width: 500px) {
  .banner {
    padding: 40px;
  }
  .banner h2 {
    font-size: 30px;
  }
}

.f-flex {
  display: flex;
  padding: 30px 60px;
  gap: 30px;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.f-flex div {
  width: 600px;
}
.f-flex .img {
  text-align: center;
}
.f-flex img {
  width: 400px;
}

.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s ease;
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.three-links {
  background-color: #fff;
  position: fixed;
  right: 0;
  top: 40%;
  width: 100px;
  z-index: 999;
  padding: 10px;
  display: flex;
  gap: 12px;
  flex-direction: column;
  border-radius: 10px 0 0 10px;
  box-shadow: -2px 2px 5px 5px #0000007a;
}

/* each icon */
.three-links .inner {
  position: relative;
  display: block;
}

/* image */
.three-links img {
  width: 100%;
  cursor: pointer;
}

/* hidden text */
.three-links .inner p {
  position: absolute;
  top: 50%;
  right: 90px;
  transform: translateY(-50%);
  background-color: #111;
  color: #fff;
  width: 280px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0;
  visibility: hidden;
  transform: translate(10px, -50%);
  transition: all 0.3s ease;
  pointer-events: none;
}

/* show on hover */
.three-links .inner:hover p {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}
