/* Start Flexbox  category of service  */
#flex-container {
  display: flex;
  height: 300px;
  /* justify-content: center; */
  justify-content: space-between;
  flex-wrap: wrap;
}

#flex-item {
  background-color: #ECFFEC;
  /* margin: 45px; */
  width: 181px;
  height: 200px;
  border-radius: 10px;
  transition: box-shadow 0.5s ease;
  text-align: center;
}

.card1 {
  filter: hue-rotate(150deg);
}

.card2 {
  filter: hue-rotate(300deg);
}

.card3 {
  filter: hue-rotate(450deg);
}

.card4 {
  filter: hue-rotate(600deg);
}

.card5 {
  filter: hue-rotate(750deg);
}

#flex-item:hover {
  box-shadow: 0px 0px 10px green;
}


#flex-content {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  background: #fff;
  padding: 22px;
  width: 145px;
  height: 145px;
  margin-top: 200px;
  position: relative;
  z-index: 2;
  -webkit-transform: translateY(-90px);
  transform: translateY(-90px);
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#profile-flex-img {
  max-width: none;
  position: absolute;
  top: -117px;
  left: 20px;
  height: 105px;
  width: 105px;
  border-radius: 10px;
  padding: 3px;
  box-shadow: #0066ff 0px 20px 60px 0px, #00c8ff 0px, 18px, 36px, -18px;
  transform: translate3d(0px, 0px, 50px);
  display: flex;
  justify-content: center;
  align-items: center;
}

#profile-flex-img.planning {
  margin-top: 8px;
  height: 94px;
}

#profile-flex-img.astrology {
  margin-top: 7px;
}

#profile-flex-img.numrology {
  margin-top: 4px;
}

#card-title {
  color: #253D4E;
  font-size: 18px;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  transition: all 0.5s ease-in-out;
  transform: translate3d(0px, 0px, 20px);
}

#card-title:hover {
  transform: translate3d(0px, 0px, 90px);
  color: #34A853;
}

/* For responsiveness */

/* Adjust the flex item width for smaller devices */
@media screen and (max-width: 768px) {
  #flex-item {
    width: calc(50% - 24px);
    /* Two items per row */
    margin: 100px;
  }

  #flex-container {
    height: auto;
    /* overflow: hidden; */
  }
}

/* Adjust the flex item width for even smaller devices */
@media screen and (max-width: 480px) {
  #flex-item {
    width: calc(100% - 24px);
    /* Single item per row */
    margin: 100px;
  }

  #flex-container {
    height: auto;
    /* overflow: hidden; */
  }

}

/* Adjust other styles as needed for responsiveness */

/* @media only screen and (max-width: 600px){
    @media only screen and (max-width: 768px){
    @media only screen and (max-width: 992px){
    @media only screen and (max-width: 1200px)
    @media only screen and (max-width: 1600px) */


#profile-see-more a {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  text-transform: uppercase;
  padding-top: 15px;
  transition: all 0.5s ease-in-out;
  transform: translate3d(0px, 0px, 20px);
  text-decoration: none;
  color: #253D4E;
  font-size: 14px;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
}

#flex-content:hover {
  border: 1px solid #34A853;
  box-shadow: 0px 0px 10px green;
}

#flex-item:hover #card-title {
  transform: translate3d(0px, 0px, 90px);
  color: #34A853;
}

#flex-item:hover #profile-see-more a {
  transform: translate3d(0px, 0px, 50px);
  color: #34A853;
}

#flex-item:hover #img-box img {
  transform: scale(1.1);
  /* Increase image size on hover */
  transition: transform 0.5s ease;
  /* Add transition for smooth effect */
}

/* End Flexbox  category of service  */

/* --------------------------------------- */

/* Start Profile-Aboutme */

.profileabout {
  background-color: white;
  margin-bottom: 50px;
}

.mainabout {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.image-container {
  position: relative;
  width: 260px;
}

.image-container img {
  height: 260px;
  width: 300px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 40px;
  background: #fff;
  transition: 0.5s ease;
}

#profilename {
  position: absolute;
  width: 150px;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 0px;
  border-radius: 29px;
  font-size: 14px;
  text-align: center;
}

.about-text {
  flex: 1;
  padding: 0 25px;
  margin-bottom: -25px;
}

.about-text h5 {
  color: black;
  font-size: 28px;
  margin-bottom: 0.4em;
}

.about-text p {
  text-align: justify;
  color: black;
  letter-spacing: 1px;
  line-height: 28px;
  font-size: 18px;
  margin-bottom: 45px;
}

#profilecontactlink {
  margin-top: -28px;
}

#profilecontactlink a {
  margin-right: 10px;
}

#profilecontactlink a img {
  width: 45px;
  height: 45px;
}

#profileimage:hover {
  border: 1px solid #34A853;
  box-shadow: 0px 0px 10px green;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .mainabout {
    flex-direction: column;
    align-items: center;
  }

  .image-container {
    width: 70%;
  }

  .about-text {
    padding: 25px 0;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .image-container {
    width: 90%;
  }
}

/* End Profile-Aboutme */

/* --------------------------------------- */

/* Testimonial */

#testimonial {
  display: flex;
  justify-content: center;
}

/* ------Whatsapp Scrollup icon------------ */
.whatsapp_main {
  position: fixed;
  bottom: 40px;
  right: 20px;
  text-align: left;
  z-index: 10;
  width: 64px;
  height: 64px;
}

@media only screen and (max-width: 600px) {
  .whatsapp_img {
    width: 50px;
    height: 50px;
  }
}


/* Shoping cart img */
.shopping-cart-img {
  border-radius: 15px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.222); */
  background-color: #f7f8fa;
  height: 100%;
}


.hideproduct {
  display: none;
}

.cart-content #item {
  display: grid;
  grid-template-columns: 70px 150px 50px 1fr;
  gap: 10px;
  text-align: center;
  align-items: center;
}

.bi-dash-lg {
  color: red;
  cursor: pointer;
}

.bi-plus-lg {
  color: green;
  cursor: pointer;
}



.btn-quantity {
  display: flex;
  flex-direction: row;
  gap: 8px;
  font-size: 16px;
  align-items: center;
}

#itemPrice {
  margin-right: 15px;
  /* Adjust the value as needed */
}

#itemList {
  margin-bottom: 25px;
}

/* ---------------Cart-page */
#label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 45vh;
  /* Set the height to fill the viewport */
}

.cartPageBtn {
  margin-top: 30px;
}

#minicartline {
  border: none;
  border-top: 2px solid #f3f3f3;
  margin: 30px 0;
}

.cart-scrollbar {
  max-height: 200px;
  overflow-y: auto;
  ;
}

/*------------- header -------------------- */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #3bb77e;
  padding: 10px 10px;
  /* border-bottom: 2px solid #fff; */
}


.header .header-left .contact-info .phone img,
.header .header-left .contact-info .email img {
  width: 20px;
  /* Adjust as needed */
  height: auto;
  /* Maintain aspect ratio */
  margin-right: 5px;
  /* Optional: Add some spacing between the image and the phone number */
  filter: invert(100%);
  /* Set the color of the image to white */
}

.contact-info {
  display: flex;
  flex-direction: row;
}

.phone,
.email {
  color: #fff;
  margin-right: 10px;
  display: flex;
  font-weight: bold;
}

.header-right {
  display: flex;
}

.social-icons {
  display: flex;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin-left: 4px;
  color: #fff;
  text-decoration: none;
}

.header-right .social-icons .social-icon img {
  width: 20px;
  height: auto;
}

/* change in line number 8231 in main.css */

/* Media Query for small screens */
@media screen and (max-width: 600px) {
  .header {
    flex-direction: column;
    /* Change to column layout for smaller screens */
    /* align-items: center; Center items horizontally */
  }

  .header-left {
    margin-bottom: 10px;
    /* Optional: Add some spacing between top and bottom */
  }

  .header-right {
    display: none;
    /* Hide the social icons container */
  }
}

/* -----------------------------Payment page loading- --------------------------- */
.payment-container {
  width: 100%;
  min-height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loading {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading .line-box {
  padding: 0px;
  width: 40%;
  height: 20px;
  border: 2px solid green;
  border-radius: 20px;
}

.loading .line-box .line {
  height: 16px;
  border-radius: 20px;
  background-color: #67d295;
  animation: Loading 5s linear infinite;
  /* animation: Loading 5s forwards cubic-bezier(0,0,0,0); */
}

@keyframes Loading {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* ----------------------- */

#text-amount {
  color: #3bb77e;
  text-align: right;
}

.checkout-order {
  margin-bottom: 20px;
}

/* ---------------------- */

#category-title {
  margin-top: 10px;
  text-align: center;
  margin-bottom: 50px;

}

#category-title .category-font a {
  font-size: 18px;
  font-weight: 600;
  color: #253D4E;
}

#category-title .category-font a:hover {
  color: #3BB77E;
}



/* ----------------Product show button ---------------------- */

#product-show-btn {
  position: relative;
  border-radius: 10px;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

#product-show-btn:active {
  transform: scale(0.96);
}

#product-show-btn:before,
#product-show-btn:after {
  position: absolute;
  content: "";
  width: 100%;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1000;
  background-repeat: no-repeat;
  background-color: #ffc503;
  border-radius: 10px;
}

/*----------------------- clickbtn ----------------------- */

#clickbtn {
  transition: all 0.2s ease;
}

#clickbtn:active {
  transform: scale(0.96);
}

#clickbtn:before,
#clickbtn:after {
  position: absolute;
  /* content: "Added..."; */
  width: 100%;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1000;
  background-repeat: no-repeat;
  /* background-color: #ffc503; */
}

/* ------------------------Footer----------------- */

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

.footer-contact img {
  min-width: 10px;
  margin-right: 12px;
  max-width: 30px;
  opacity: 0.5;
}

.footer-contact p {
  color: #3BB77E;
  font-size: 26px;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  display: block;
  line-height: 1;
}

/* Blog Author Image  */
.img-circle {
  border-radius: 50%;
  width: 50px;
  height: 28px;
  object-fit: cover;
}

/*------------------ testimonial silder box ------------------ */


/* ------------Swiper Js-------------- */
/* .demobody {
  background: green;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 10px 10px 10px 10px;
  padding: 0;
  height: 300px;
} */

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#mega-menu-image {
  /* border: 2px solid red; */
}

#mega-menu-image img {
  height: 150px;
  width: 125px;
}



/* -------------------- magnifier image -------------------- */

.product-img {
  position: relative;
}

#product-short-details {
  position: relative;
}

.magnifier-lens {
  position: absolute;
  width: 150px;
  height: 100px;
  background-color: rgba(59, 183, 126, 0.2); 
  border: 1px solid #3bb77e; 
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
}

.magnifier-lens.active {
  opacity: 1;
}
 
.magnified-img {
  position: absolute;
  width: 600px;
  height: 500px;
  border: 2px solid #3bb77e; 
  transform: scale(0.5);
  opacity: 0;
  transition: opacity .5s, transform .5s;
}

.magnified-img.active {
  opacity: 1;
  transform: scale(1);
}
/* -------------------- magnifier image  end -------------------- */