/**
 * Theme Name:     Twenty Sixteen Child
 * Author:         the WordPress team
 * Template:       twentysixteen
 * Text Domain:	   twenty-sixteen-child
 * Description:    Twenty Sixteen is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Twenty Sixteen will make your WordPress look beautiful everywhere.
 */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');


body{
	font-family:"DM Sans", sans-serif;
}
.footer_list h3.elementor-icon-box-title {
    margin: 0;
    margin-bottom: 5px;
}

.footer_list .elementor-icon-box-wrapper {
    display: flex;
}
.welcome_circle_image{
    position:relative;
}
.welcome_circle_image:after {
    content: '';
    width: 70%;
    height: 69%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url('https://digivendtechnologies.in/mealplan/wp-content/uploads/2025/08/Group-14.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
.welcome_circle_image img{
    transition:0.5s;
}

.section_observe {
	overflow: hidden;
}
.section_observe.active .welcome_circle_image img{
   transform: rotate(90deg);
}
.exper_card h3.elementor-icon-box-title {
    margin: 0;
    line-height: 1;
    margin-bottom: 5px;
}
.rotate_animation{
    animation:spin 10s linear infinite;
}
.updoanAnimation{
    animation: upanimation 2s ease-in-out infinite alternate;
}
@keyframes spin {
	0%{
		transform:rotate(0deg)
	}
	100%{
		transform:rotate(360deg)
	}
}
@keyframes upanimation {
	0%{
		transform:translateY(0px);
	}
	100%{
		transform:translateY(10px);
	}
}
.testimonial .swiper-slide-inner {
    padding: 15px;
}

.testimonial .elementskit-commentor-content {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom:25px;
}

.testimonial .elementskit-commentor-content p{
    margin:0 !important;
}

.testimonial .elementskit-commentor-header {
    margin-bottom:15px !important;
}

.elementskit-post-image-card .elementskit-entry-header a {
    line-height: 0;
}

.recent_post .ekit-wid-con .elementskit-single-testimonial-slider {
	background: transparent;
	box-shadow: none;
}
.recent_post .elementskit-commentor-image {
    background: radial-gradient(#ffffff, #fde3c0);
    width: 150px;
    height: 150px;
    text-align: center;
    border-radius: 50%;
    margin: auto !important;
	margin-bottom: 15px !important;
}

.recent_post .ekit-wid-con .elementskit-commentor-bio .elementskit-commentor-image>img {
    border-radius: 50%;
    height: 150px;
    width: 130px;
}

/* ============= gallery-wrapper */
.gallery-wrapper {
  overflow: hidden;
}
.gallery-row {
  display: flex;
  gap: 20px;
  padding: 10px 0;
  will-change: transform;
}
.gallery-row img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-row img:hover {
  transform: scale(1.05);
}
.row-2 {
  transform: translateX(-50%);
}

/* Popup Styles */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}
.popup.show {
  display: flex;
  opacity: 1;
}
.popup img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 1000;
}

/* Swiper inside popup */
.popup .swiper {
  width: 90%;
  height: 80%;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}
.swiper-pagination-bullet {
  background: #fff;
}

.popup .swiper-slide.swiper-slide-active {
    justify-content: center;
    align-items: center;
    display: flex;
}

/* Custom Swiper Navigation Arrows */
/* Custom Swiper Navigation Arrows inside popup */
.popup-swiper .swiper-button-next,
.popup-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
}

/* Hover effect */
.popup-swiper .swiper-button-next:hover,
.popup-swiper .swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 0.5); /* Only background color changes */
}

/* Remove default arrow content */
.popup-swiper .swiper-button-next::after,
.popup-swiper .swiper-button-prev::after {
  content: '';
}

/* Custom SVG Arrows */
.popup-swiper .swiper-button-next {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="white" viewBox="0 0 24 24"><path d="M9 18l6-6-6-6"/></svg>');
}

.popup-swiper .swiper-button-prev {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="white" viewBox="0 0 24 24"><path d="M15 18l-6-6 6-6"/></svg>');
}

/* Position */
.popup-swiper .swiper-button-next {
  right: 20px;
}

.popup-swiper .swiper-button-prev {
  left: 20px;
}

.shop_products-section,
.shop_banner-section {
	overflow: hidden;
}

.swiper-navigation-button.swiper-button-next {
    top: 50% !important;
    right: -10px !important;
    width: 50px;
    height: 50px;
    height: 60px;
    width: 60px;
    background: #fff;
    border: 2px solid #d50033;
    color: #d50033 !important;
	border-radius: 50%;
}

.swiper-navigation-button.swiper-button-prev {
    top: 50% !important;
    left: -10px !important;
    width: 50px;
    height: 50px;
    height: 60px;
    width: 60px;
    background: #fff;
    border: 2px solid #d50033;
    color: #d50033 !important;
	border-radius: 50%;
}

.swiper-navigation-button.swiper-button-prev svg,
.swiper-navigation-button.swiper-button-next svg {
	fill: #d50033 !important;
}

.clientInn figure.swiper-slide-inner {
    box-shadow: 9px 11px 15px 0px rgba(0, 0, 0, 0.02);
    padding: 15px;
    margin: 10px !important;
    background: #fff;
}

.clientInn figure.swiper-slide-inner img {
    aspect-ratio: 5 / 2;
    mix-blend-mode: darken;
    object-fit: contain;
}

.clientInn span.swiper-pagination-bullet {
	width: 10px;
    height: 10px;
    border-radius: 12px !important;
    background: #ff6000;
    transition: 0.5s;
}

.clientInn span.swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 28px;
    height: 10px;
    border-radius: 12px !important;
    background: #ff6000;
    transition: 0.5s;
}

.meal_plan-title {
  display: inline-block;           /* required so transform works smoothly */
  font-weight: 600;
  will-change: transform;          /* optimize for animation */
  animation: floatY 3s ease-in-out infinite;
  /* tweak below for visual polish */
  transform-origin: center;
  -webkit-font-smoothing: antialiased;
}

/* gentle up-down movement */
@keyframes floatY {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* a faster, more bouncy variant you can switch to */
.meal_plan-title.fast {
  animation: floatY 1.6s cubic-bezier(.34,.85,.39,1) infinite;
}

/* pause on hover */
.meal_plan-title:hover {
  animation-play-state: paused;
  cursor: default;
}

.contact_list_item h3.elementor-icon-box-title {
    margin-top: 0;
}
.product_item figure.elementor-image-box-img {
    width: 100% !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 50px;
    border-radius: 13px;
}

.product_item figure.elementor-image-box-img a img {
    width: 190px;
}

.product_item figure.elementor-image-box-img a {
    display: block;
    text-align: center;
}
/* ============================= 404 css =============================== */
.error-page-area {
    text-align: center;
    margin-bottom:50px;
}
.error-bottom h2 {
    font-size: 27px;
    font-weight: 500;
    font-family: "DM Sans", Sans-serif;
    color: #000;
    margin-bottom: 20px;
}
.error-top img {
    border-radius: 5px;
    width: 300px;
}
.error-bottom p {
   font-family: "DM Sans", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #636363;
    margin-bottom: 35px;
}

a.default-btn-error {
    font-family: "DM Sans", Sans-serif;
    font-weight: 600;
    background-color: transparent;
    background: #df3a2d;
    border-radius: 5px;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.15);
    padding: 14px 25px 14px 25px;
    color:#fff;
    text-decoration:none;
}
a.default-btn-error:hover{
    background: #eabc53;
}
@media only screen and (min-width: 768px) and (max-width: 992px){
    .error-page-area {
        padding: 0 10px;
    }
}