/* Imports */
/* Icons */
@import url("https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css");
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Anybody:wdth,wght@102.4,100..900&family=DynaPuff:wght@400..700&display=swap");

:root {
  --white: #ffffff;
  --black: #000000;
  --primary: #b079f6;
  --secondary: #feda46;
  --font-anybody: "Anybody", sans-serif;
  --font-dynapuff: "DynaPuff", system-ui;
}

::selection {
  background-color: var(--secondary);
  color: var(--white);
}

/* General Styling */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
  font-family: var(--font-anybody);
  color: var(--black);
  overflow-wrap: break-word;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: clip;
}

a,
button {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: inline-block;
}

ul,
ol,
dl,
address,
label,
figure {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-dynapuff);
}

p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
  color: #444444;
}

section {
  position: relative;
  overflow: clip;
}

.padd-y {
  padding: 5rem 0;
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}

/* LENIS */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* .lenis.lenis-smooth iframe {
	pointer-events: none;
} */

/* PRELOADER */
/* PRELOADER */

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.preLoader.black {
  background-color: var(--primary);
  z-index: 11113;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--secondary);
}

/* PRELOADER */

/* THEMEBTN */
.themeBtn {
  width: fit-content;
  display: block;
  background-color: var(--primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0.85em 2.125em;
  border-radius: 3.125rem;
}

.themeBtn:hover {
  transform: translateY(-10px);
  color: var(--white);
}

/* HEADINGS */
.subHeading {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
}

.mainHeading {
  font-size: 3.75rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--black);
}

/* HEADER */
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 23px 0 23px 0;
  transition: 0.3s ease-in-out;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.header__top__info,
.header__top__list {
  display: flex;
  align-items: center;
}

.header__top__info {
  gap: 3.125rem;
}

.header__top__info li a,
.header__top__list li a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
}

.header__top__info li a i {
  margin-right: 0.25rem;
  color: var(--primary);
}

.header__top__list {
  gap: 1rem;
}

.header__top__list li {
  border-right: 1px solid var(--black);
  padding-right: 1rem;
}

.header__top__list li:nth-of-type(3),
.header__top__list li:nth-of-type(4) {
  border: none;
}

.header__top__list li a i {
  margin-right: 0.25rem;
}

.header-main {
  /* background: var(--white); */
  /* box-shadow: 0px 15px 24px -6px rgb(0, 0, 0, 5%); */
  padding: 0;
}

.header-main__logo {
  width: 250px;
  margin: 0;
  padding: 0;
}

.header-main__logo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-main__nav {
  align-items: center;
  gap: 2.5rem;
  margin-right: 3rem;
}

.header-main__nav .nav-item .nav-link {
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
  padding: 0.35rem 0;
  text-transform: capitalize;
  position: relative;
  font-family: "Nunito", serif;
}

.header-main__nav .nav-item .nav-link::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 300ms ease-in-out;
}

.header-main__nav .nav-item .nav-link:hover::after,
.header-main__nav .nav-item .nav-link.active::after {
  width: 100%;
  right: auto;
  left: 0;
}

.header-main__nav .header-main__subtn {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-main__nav .header-main__subtn a {
  font-size: 1.25rem;
  border-right: 1px solid var(--black);
  padding-right: 1rem;
}

.header-main__nav .header-main__subtn .shoppingCart {
  padding: 0;
  border: none;
  width: 45px;
  height: 45px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary);
  display: grid;
  place-items: center;
  position: relative;
}

.header-main__nav .header-main__subtn .shoppingCart span {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 12px;
}

.header-main__nav .header-main__subtn .shoppingCart i {
  color: var(--white);
}

/* BANNER */
.mainbanner {
  height: 1000px;
}

.mainbanner__img {
  width: 93%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10rem auto 0;
}

.mainbanner__img figure {
  text-align: right;
}

.mainbanner__content h1 {
  font-size: 4.75rem;
  font-weight: 600;
  text-transform: capitalize;
  line-height: normal;
  margin: 0;
  color: #fff;
}

.mainbanner__content p {
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  margin: 1rem 0 1.75rem;
}

.mainbanner .swiper-pagination {
  width: fit-content;
  bottom: 8rem;
  left: 18rem;
}

.mainbanner .swiper-button-prev,
.mainbanner .swiper-button-next {
  width: 4.35rem;
  height: 4.35rem;
  font-size: 1rem;
  color: var(--white);
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.28);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.mainbanner .swiper-button-next {
  right: 1rem;
}

.mainbanner .swiper-button-prev {
  left: 1rem;
}

.mainbanner .swiper-button-next:hover,
.mainbanner .swiper-button-prev:hover {
  background: var(--white);
  color: var(--black);
}

.mainbanner .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  display: inline-block;
  margin: 0 0.5rem !important;
  opacity: 1;
  border: 1px solid var(--white);
  background: transparent;
}

.mainbanner .swiper-pagination-bullet-active {
  background: var(--white);
  position: relative;
}

.wrapper {
  position: relative;
}

.wrapper:before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 90%;
  background: linear-gradient(180deg, #794f8d, #312034);
}

/* slider css */

/* step-section */
.step-item__content h4 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--black);
  margin: 1.5rem 0 0.5rem;
}

/* about-section */
.about__item--content h4 {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--black);
  margin-top: 1rem;
}

/* categori-sec */
.categories-section .swiper-button-prev:after,
.categories-section .swiper-button-next:after {
  font-family: "Font Awesome 5 Pro";
  font-size: 1.125rem;
}

.categories-section .swiper-button-prev:after {
  content: "\f177";
}

.categories-section .swiper-button-next:after {
  content: "\f178";
}

.categories-section .swiper-button-next,
.categories-section .swiper-button-prev {
  background: transparent;
  width: 46px;
  height: 46px;
  border: 1px solid #999999;
  color: #999999;
  border-radius: 50px;
  top: 92%;
  transition: 0.5s ease-in-out;
}

.categories-section .swiper-button-next:hover,
.categories-section .swiper-button-prev:hover {
  background: var(--secondary);
  color: var(--white);
}

.categories-section .swiper-button-next {
  right: 45%;
}

.categories-section .swiper-button-prev {
  left: 45%;
}

.cateBox h3 {
  font-size: 20px;
  font-weight: bold;
  font-family: "Anybody";
  margin-top: 24px;
}

.cateBox {
  text-align: center;
  border: 5px solid #f8f8f8;
  padding: 45px;
  border-radius: 169px;
}

.categorieSlider {
  padding-top: 4rem;
  padding-bottom: 7rem;
}

.categories-section {
  padding: 2rem 0 6rem 0;
}

.browside1 {
  position: absolute;
  top: 38%;
}

/* categori-sec */

/* health-product */
.health-product .mainHeading {
  color: #fff;
}

.health-product {
  background: #704a82;
  padding: 4rem 0;
}

.health-wrap figure {
  background: #fff;
  padding: 45px 40px;
  position: relative;
}

ul.productstar {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #feda46;
  width: fit-content;
  padding: 3px 15px;
  position: absolute;
  bottom: 3%;
  right: 4%;
}

.health-cntnt h4 {
  font-size: 13px;
  font-weight: bold;
  color: var(--primary);
}

.health-cntnt {
  margin-top: 1.125rem;
}

.health-cntnt h3 {
  font-size: 20px;
  font-weight: bold;
  font-family: "Anybody";
  margin: 0;
  color: #fff;
}

.health-cntnt h5 {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  margin: 1rem 0 0 0;
}

.health-wrap {
  margin-bottom: 44px;
}

.product-main {
  background: #b079f6;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 20px;
  margin-top: -64px;
}

ul.productstar2 {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px;
  background: #feda46;
  width: fit-content;
  position: absolute;
  bottom: 2rem;
  right: 61%;
}

.productox1 figure {
  padding: 72px 40px;
  background: #fff;
  position: relative;
}

.productox1 h4 {
  font-size: 1.125rem;
  position: absolute;
  font-weight: bold;
  background: #000;
  padding: 17px 30px;
  color: #fff;
  top: -99px;
  margin: 0;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0% 100%);
}

ul.productnumbers {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 49px;
}

.productbtn {
  display: flex;
  align-items: center;
  gap: 4px;
}

.productbtn .themeBtn {
  border-radius: unset;
}

.productbox2 h4 {
  font-size: 13px;
  font-weight: bold;
  color: #fff;
}

.productbox2 h2 {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  font-family: "Anybody";
  margin: 1rem 0;
}

.productbox2 h5 {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 12px 0 1.5rem 0;
}

.productbox2 h5 del {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  font-family: "Anybody";
}

.productbox2 h5 span {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  text-decoration: underline !important;
}

a.heartbtn {
  background: #feda46;
  padding: 12px 18px;
  font-size: 1.125rem;
}

ul.productnumbers li {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  background: #000;
  padding: 21px;
  text-align: center;
  line-height: 1.2;
}

ul.productnumbers li span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}

h3.percetage {
  color: #fff;
  position: absolute;
  background: var(--primary);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1rem;
  font-weight: bold;
  display: grid;
  place-items: center;
  font-family: "Anybody";
  top: 10px;
  right: 20px;
}

/* health-product */

/* counter-sec */
section.counter-section {
  padding: 5rem 0;
}

.counter-wrap {
  text-align: center;
}

.counter-wrap h4 {
  font-size: 90px;
  font-weight: 600;
  font-family: "DynaPuff";
  margin: 0;
  line-height: 1;
  margin-top: 10px;
  color: var(--primary);
}

.counter-wrap h4 span {
  color: var(--primary);
  font-family: "DynaPuff";
}

.counter-wrap h5 {
  font-size: 1.125rem;
  color: #000;
  margin: 0;
  font-weight: 500;
}

/* counter-sec */

/* working-team */
.working-team {
  padding: 5rem 0;
  background: #f5f5f5;
}

.working-team .title__wrap {
  margin-bottom: 10rem;
}

ul.teamsocial {
  display: flex;
  align-items: center;
  align-items: center;
  gap: 10px;
}

.working-wrap {
  border: 5px solid #f1f1f1;
  border-radius: 175px;
  padding: 59px 59px;
}

.working-wrap figure {
  position: absolute;
  top: -8rem;
  right: 0;
}

.working-wrap h4 {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
}

.working-wrap h5 {
  font-size: 28px;
  font-weight: 600;
}

ul.teamsocial li a {
  background: #feda46;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.form-group input {
  height: 60px;
  width: 100%;
  border: 1px solid #ffffff;
  background-color: #fff;
  outline: unset !important;
  border-radius: 45px;
  box-shadow: unset !important;
}

.form-group input::placeholder {
  font-size: 1rem;
  color: #000;
  line-height: 1.1;
  font-weight: 400;
}

.walkercntnt h3 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
}

.walkercntnt p {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.6;
  margin: 1rem 0 1.5rem 0;
}

section.walkers-section::before {
  position: absolute;
  content: "";
  background: #704a82;
  width: 961px;
  height: 650px;
  border-radius: 416px;
  top: 4rem;
  left: 34%;
}

.walkers-section {
  padding: 9rem 0;
}

/* working-team */

/* client-section */
.client-section {
  background: var(--primary);
  padding: 7rem 0;
}

ul.clientstar {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  margin-bottom: 18px;
}

.clientBox p {
  font-size: 20px;
  line-height: 1.5;
  color: #444444;
  width: 94%;
}

.clientBox {
  text-align: center;
  background: url(../images/clientshape.webp) center / cover no-repeat;
  padding: 5rem 3rem;
}

ul.clientstar li a i {
  color: #feda46;
}

.clientBox h3 {
  font-size: 26px;
  font-weight: bold;
  font-family: "Anybody";
}

.clientBox h5 {
  font-size: 1rem;
  color: #212529;
}

.categories-section.client-section .title__wrap {
  margin-bottom: 5rem;
}

.clientBox figure {
  position: absolute;
  right: 79px;
  bottom: 35px;
}

.client-section .swiper-button-prev:after,
.client-section .swiper-button-next:after {
  font-family: "Font Awesome 5 Pro";
  font-size: 1.125rem;
}

.client-section .swiper-button-prev:after {
  content: "\f177";
}

.client-section .swiper-button-next:after {
  content: "\f178";
}

.client-section .swiper-button-next,
.client-section .swiper-button-prev {
  background: #fff;
  width: 46px;
  height: 46px;
  border: 1px solid #999999;
  color: #999999;
  border-radius: 50px;
  top: -32%;
  transition: 0.5s ease-in-out;
}

.client-section .swiper-button-next:hover,
.client-section .swiper-button-prev:hover {
  background: var(--secondary);
  color: var(--white);
}

.client-section .swiper-button-next {
  right: 0;
}

.client-section .swiper-button-prev {
  left: inherit;
  right: 4%;
}

.reviewlast ul.productstar {
  position: unset;
  border-radius: 50px;
}

.reviewlast {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.reviewlast h5 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

/* client-section */

/* blog */
.articlecntnt2 h3 {
  font-size: 22px;
  font-weight: bold;
  font-family: "Anybody";
  background: unset;
  color: #000 !important;
}

.articlecntnt2 p {
  font-size: 1rem;
  color: #444444;
  line-height: 1.8;
}

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

.articleuser h5 {
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
}

.article-cntnt h2 {
  font-size: 55px;
  font-weight: bold;
  color: var(--primary);
  font-family: "Anybody";
  line-height: 1;
}

.article-cntnt h2 span {
  font-size: 13px;
  font-weight: bold;
  display: block;
}

.orangebg {
  font-size: 14px;
  font-weight: 500;
  background: var(--primary);
  padding: 6px 10px;
  width: fit-content;
  font-family: "Anybody";
  color: #fff;
  position: absolute;
  top: 10px;
  margin: 0;
  left: 25px;
}

figure.articleimg11 {
  position: relative;
}

.article-cntnt {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-top: 2rem;
}

.articlecntnt2 {
  border-left: 1px solid #cccccc;
  padding-left: 20px;
}

.recent-article .title__wrap {
  margin-bottom: 2rem;
}

.recentbtn a {
  margin: 3rem auto 0;
}

.recent-article {
  padding: 5rem 0;
}

/* blog */

/* instasec */
ul.insta-img {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topinsta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 45px;
}

a.isntbtn {
  font-size: 30px;
  font-weight: bolder;
  color: #000;
  margin: 0;
}

a.isntbtn img {
  margin-right: 10px;
}

.topinsta .themeBtn {
  background: var(--primary);
  color: #fff;
}

/* instasec */

/* footer */
footer {
  background: url(../images/footerbg.webp) center/cover no-repeat;
  padding-top: 130px;
}

.footertstart1 p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.8;
  margin-top: 2rem;
}

ul.firstlinks li a {
  font-size: 1rem;
  color: #fff;
}

ul.firstlinks li i {
  background: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-right: 10px;
  color: #fff;
}

ul.firstlinks li + li {
  margin-top: 10px;
}

.quickList ul li a {
  font-size: 1rem;
  color: #fff;
}

.quickList ul li a i {
  color: var(--primary);
  margin-right: 8px;
}

.quickList ul li + li {
  margin-top: 1.125rem;
}

.quickList h2 {
  font-size: 24px;
  font-weight: bold;
  font-family: var(--font-anybody);
  position: relative;
  margin-bottom: 50px;
  color: #fff;
  text-transform: uppercase;
}

.quickList h2::before {
  position: absolute;
  content: "";
  background: var(--primary);
  height: 3px;
  width: 65px;
  bottom: 0;
}

.row.copyRight p {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
  color: #fff;
}

.copyRight {
  padding: 89px 0 30px 0;
}

.footerlast {
  background: #fff;
  padding: 40px;
  margin-top: -40px;
}

.footerlast h2 {
  color: #000;
}

ul.ftr-timng li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

ul.ftr-timng li {
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px dashed #dedede;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-family: var(--font-anybody);
}

ul.ftr-timng li span {
  color: var(--primary);
}

.contactnos {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed #dedede;
  padding-bottom: 10px;
}

.contactnos a {
  font-size: 26px;
  font-weight: bold;
  color: var(--primary);
}

.contactnos a span {
  display: block;
  color: #212529;
  font-size: 1rem;
}

ul.footerlinks {
  display: flex;
  align-items: center;
}

ul.footerlinks li + li {
  margin-top: 0;
}

ul.footerlinks li a i {
  background: var(--primary);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}

/* footer */
.quickList ul li:hover a {
  color: var(--primary);
}

.marquee.top {
  position: absolute;
  top: 5%;
  z-index: 0;
  left: 0;
  right: 0;
}

.marquee {
  /* overflow: hidden; */
  user-select: none;
  display: flex;
  gap: 4rem;
}

.marquee ul {
  list-style: none;
  flex-shrink: 0;
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  animation: marquee 38s linear infinite;
}

.marquee .text {
  text-align: center;
  font-size: 12.75rem;
  margin: 0;
  line-height: 0.7;
  /* font-family: "Albra"; */
  position: relative;
  z-index: -1;
  color: rgb(0 0 0 / 2%);
  font-weight: 500;
}

@keyframes marquee {
  to {
    transform: translateX(calc(-100% - 4rem));
  }
}

section.categories-section.client-section .mainHeading {
  color: #fff;
}

section.recent-article .themeBtn {
  background: var(--primary);
}

section.insta-section {
  padding: 2rem 0 5rem 0;
}

.walkers-section .themeBtn {
  background: #fa441d;
}

.copyRight p strong {
  font-weight: bold;
  color: #fff;
}

.dogside11 {
  position: absolute;
  top: 17%;
  left: 10%;
}

.about-section {
  background: #f5f5f5;
  padding: 5rem 0;
}

/* innerpages Start */

.innerBan .overlay {
  position: absolute;
  text-align: left;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.innerBan h2 {
  font-size: 50px;
  color: var(--white);
  text-transform: capitalize;
  font-weight: bold;
}

.innerBan {
  position: relative;
  top: 15rem;
  width: 95%;
  left: 0;
  right: 0;
  margin: auto;
}

.innerwrapper {
  position: relative;
}

.innerwrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #794f8d, #312034);
  top: 0;
}

.about-section.aboutinner {
  margin-top: 12rem;
}

.health-product.product-page .mainHeading {
  color: #000;
}

.health-product.product-page {
  background: unset;
  margin-top: 14rem;
}

.health-product.product-page .health-cntnt h3 {
  color: #000;
}

.health-product.product-page .health-cntnt h5 {
  color: #000;
}

.recent-article.blog-page {
  background: unset;
  padding-top: 18rem;
  padding-bottom: 2rem;
}

.recent-article.blog-page .article-wrap {
  margin-bottom: 3rem;
}

.contact-form input {
  height: 57px;
  width: 100%;
  outline: unset !important;
  box-shadow: unset !important;
  border: 1px solid rgb(171 152 186 / 50%);
  border-radius: unset;
}

.contact-form label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
}

.contact-form .form-group {
  margin-bottom: 1.875rem;
}

.contact-form h4 {
  margin-top: 50px;
  text-align: center;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
}

.contact-form textarea {
  height: 305px;
  width: 100%;
  outline: unset !important;
  box-shadow: unset !important;
  border: 1px solid rgb(171 152 186 / 50%);
}

.contact-form textarea::placeholder {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
}

.contact-form button {
  height: 56px;
  width: 225px;
  border: unset;
  background: var(--primary);
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  border-radius: 50px;
}

section.contact-sec h3 {
  font-size: 1.1875rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  position: relative;
  margin-top: 50px;
}

section.contact-sec h3::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 56px;
  background: var(--primary);
  left: 0;
  right: 0;
  margin: auto;
  bottom: -1.25rem;
}

.contact-form input::placeholder {
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary);
}

.contact-sec {
  padding: 18rem 0 4rem 0;
}

.health-wrap figure img {
  margin: 0 auto;
  display: block;
}

/* / Contact-Sec Css End / */

.header-main__logowrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
}

.paw-image {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.paw-image img {
  width: 80px;
}

.paw-image .randomnumber,
.paw-image .clickme {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-dynapuff);
  position: absolute;
  top: 81%;
  left: 50%;
  transform: translate(-45%, -80%);
  transition: all 0.3s ease-in-out;
}

.paw-image .randomnumber,
.paw-image.randomnumber-clicked .clickme {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.paw-image.randomnumber-clicked .randomnumber {
  opacity: 1;
  visibility: visible;
  display: block;
}

.paw-image .clickme {
  font-size: 9px;
}

/* .randomnumber-clicked {
	opacity: 0;
} */

/* sudoku-section */
.sudoku-section {
  padding: 1rem 0 5rem;
}

.sudoku-game {
  background-color: var(--light-bg);
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.sudoku-board {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  width: fit-content;
  border: 4px solid var(--primary);
  background-color: var(--white);
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.25);
  gap: 4px;
  position: relative;
  margin: 0.5rem auto 2rem;
}

/* Sudoku Cells */
.cell {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 1.3rem;
  border: 2px solid var(--primary);
  outline: none;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  border-radius: 5px;
  background-color: var(--white);
  color: var(--black);
}

/* Input Focus Effect */
.cell:focus {
  background-color: var(--secondary);
  transform: scale(1.08);
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.15);
}

/* Disabled Cells (Pre-filled Numbers) */
.cell:disabled {
  background-color: #e9ecef;
  color: var(--black);
  font-weight: bold;
  cursor: not-allowed;
}

/* Error Highlight */
.error {
  background-color: #ffb3b3 !important;
  border-color: #ff0000 !important;
  animation: shake 0.3s ease-in-out;
}

/* Grid Line Styling */
.cell:nth-child(3n) {
  border-right: 3px solid var(--black);
}

.cell:nth-child(27n) {
  border-bottom: 3px solid var(--black);
}

.cell:nth-child(9n) {
  border-right: none;
}

.cell:nth-child(n + 19):nth-child(-n + 27),
.cell:nth-child(n + 46):nth-child(-n + 54) {
  border-bottom: 3px solid var(--black);
}

/* Animated Glow Effect on Selection */
.cell:focus-visible {
  box-shadow: 0px 0px 12px var(--primary);
}

/* Subtle Shadow Effect for Board */
.sudoku-board::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

/* Shake Animation for Errors */
@keyframes shake {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  50% {
    transform: translateX(5px);
  }

  75% {
    transform: translateX(-5px);
  }

  100% {
    transform: translateX(0);
  }
}

/* Difficulty Options */
.difficulty-option {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 5px;
  padding: 8px 12px;
  border-radius: 8px;
  background-color: var(--secondary);
  color: var(--black);
  transition: all 0.3s ease-in-out;
}

.difficulty-option:hover {
  background-color: var(--primary);
  color: var(--white);
}

.difficulty-selected {
  background-color: var(--primary) !important;
  color: var(--white) !important;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--black);
}

.btn-info {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--black);
}

.btn-info:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-success {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-success:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--black);
}

/* Timer Text */
#timer {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary);
}

.payment-img {
  margin-top: -4rem;
}

.Amazon-payment-img {
  text-align: center;
  margin: 1rem auto;
  width: 379px;
}

.Amazon-payment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-sec .mainHeading {
  font-family: var(--font-anybody);
}
