@keyframes pulse-blue-medium-sm {
  0% {
    box-shadow: 0 0 0 0 rgba(107, 73, 242, 0.4);
  }

  30% {
    box-shadow: 0 0 0 20px rgba(107, 73, 242, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(107, 73, 242, 0);
  }
}

@keyframes pulse-blue-small-sm {
  0% {
    box-shadow: 0 0 0 0 rgba(107, 73, 242, 0.2);
  }

  30% {
    box-shadow: 0 0 0 15px rgba(107, 73, 242, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(107, 73, 242, 0);
  }
}

.btn-animation .elementor-button {
  position: relative;
  overflow: hidden;
  /* Ensure pseudo-elements stay within button bounds */
}

.btn-animation .elementor-button::before,
.btn-animation .elementor-button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 42px;
  z-index: -1;
}

.btn-animation .elementor-button::before {
  animation: pulse-blue-medium-sm 3.5s infinite;
}

.btn-animation .elementor-button::after {
  animation: pulse-blue-small-sm 3.5s infinite;
}

/* Hero Section Css */
/* .border-line {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.border-line :first-child{
    animation-delay: 3s;
}

.border-line .elementor-widget-container {
    position: absolute;
    z-index: 99999;
    top: -275px;
    animation: star_down_one 6s infinite linear;
    opacity: 0;
}

@keyframes star_down_one {
    0% {
        opacity: 0;
        top: -250px;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
} */

.frame-slider .elementor-image-carousel-wrapper {
  border-radius: 30px;
  height: 100%;
  max-height: 1100px;
  width: 100%;
}

.custom-accordion .e-n-accordion-item-title {
  justify-content: space-between !important;
  border: 0 !important;
  padding: 14.5px 16px 12.5px 16px !important;
}

.custom-accordion .elementor-element {
  border: 0 !important;
}

.custom-accordion .elementor-element .e-con-inner {
  margin: 0 !important;
}

.custom-accordion .e-n-accordion-item {
  border: 1px solid #171c1914;
  border-radius: 10px;
  overflow: hidden;	
}

.page-id-14 {
  background-color: #fafafa !important;
}

.get-btn .elementor-button {
  padding: 16px 38px;
}

.hero-slider-bg-circle {
  max-width: fit-content !important;
  min-width: calc(100% + 200px) !important;
  position: absolute !important;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: auto !important;
  height: fit-content;
}

.custom-testimonial .swiper-pagination-bullet-active {
  width: 24.65px !important;
  border-radius: 6.65px !important;
}

.custom-form .wpcf7-form-control {
  border: 1px solid #171c1914;
  border-radius: 10px;
  padding: 16px; 
  font-size: 16px;
  line-height: 25.6px;
  width: 100%;
  background-color: #171c1903;
}
.custom-form .wpcf7-form-control:focus {
  background-color: #fff;
  border-color: #53b175 !important;
  outline: none !important;
}

.custom-form .wpcf7-form label {
  width: 100%;
}
.custom-form .wpcf7-submit {
  background-color: #53b175;
  color: #fff !important;
  max-width: 162px !important; 
  font-size: 16px !important;
  line-height: 25.6px !important;
  font-weight: 500;
}

.custom-form .wpcf7-submit:hover {
  background-color: transparent;
  color: #53b175 !important;
  border-color: #53b175;
}

.custom-form .wpcf7-submit:focus {
	background-color: transparent;
  color: #53b175 !important;
  border-color: #53b175;
}

.field-row {
	display: flex;
	gap: .9rem;
}

.elementor-14 .elementor-element.elementor-element-b11fb85.elementor-element {
  align-self: end;
  padding-right: 15px;
}

.custom-post {
  height: 100% !important;
}

/* Responsive screen css start */
@media (min-width: 575.98px) {
  .menu-item-1207 {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .elementor-element-b11fb85 {
    margin: auto !important;
  }
	.field-row {
		flex-wrap: wrap;
	}
}

/* Responsive screen css end */

/* .elementor-element-b11fb85 {
  margin: auto !important;
} */

.custom-testimonial .swiper-slide {
  padding: 0 !important;
}

.icon-animation {
  position: relative;
  display: inline-block; /* Ensures the icon's position is relative to its parent */
}

.icon-animation img {
  animation: smooth-up-down 3s ease-in-out infinite; /* Adjust the duration for smoothness */
}

/* Smooth Up and Down Keyframes */
@keyframes smooth-up-down {
  0%,
  100% {
    transform: translateY(0); /* Original position */
  }
  50% {
    transform: translateY(-20px); /* Move up */
  }
}

.icon-animation-new {
  position: relative;
  display: inline-block; /* Ensures the icon's position is relative to its parent */
}

.icon-animation-new img {
  animation: smooth-down-up 3s ease-in-out infinite; /* Adjust the duration for smoothness */
}

/* Smooth Up and Down Keyframes */
@keyframes smooth-down-up {
  0%,
  100% {
    transform: translateY(0); /* Original position */
  }
  50% {
    transform: translateY(20px); /* Move up */
  }
}

/* Stop animation on hover */
.button-animation:hover {
  animation-play-state: paused; /* Pauses the animation when hovering */
}

.get-btn {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  animation: pulse 2s infinite;
}

/* Pulse Keyframes */
@keyframes pulse {
  0% {
    transform: scale(1); /* Normal size */
  }
  50% {
    transform: scale(1.1); /* Slightly larger */
  }
  100% {
    transform: scale(1); /* Back to normal size */
  }
}
/* Stop animation on hover */
.get-btn:hover {
  animation-play-state: paused; /* Pauses the pulse animation on hover */
}

.our-blog-section{
	position: relative;
}

.our-blog-section::before {
  content: '' !important;
  display: block !important;
  height: 200px !important; /* Adjust this value based on your header height */
  margin-top: -80px !important; /* Same value as height */
  visibility: hidden !important;
}

/* Category list */
.cat-list {
    list-style-type: none;
    padding-left: 0;
}

.cat-list-item button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    position: relative;
    width: 100%;
    text-align: left;
    border: none;
    background-color: #ffffff !important;
    border-radius: 8px;
	outline: none;
}

.cat-list-item button:hover,
.cat-list-item button:focus{
    background-color: rgba(83, 177, 117, 0.05) !important;
}

.cat-list-item:not(:last-child) button:before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 1px;
    width: calc(100% - 24px);
    background-color: #171C190A;
}

.cat-list-item button:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 4px;
    height: 42px;
    border-radius: 0 5px 5px 0;
    background-color: transparent;
}

.cat-list-item.active button:after {
    background-color: #53B175;
}

.cat-list-item .cat-icon {
    width: 42px;
    height: 42px;
    object-fit: content;
}

.cat-list-item .cat-text {
    font-size: 16px;
    font-weight: 500;
    color: #171C19;
    margin-bottom: 0;
    flex-grow: 1;
}

.cat-list-item .sub-cat-count {
    min-width: 28px;
    height: 28px;
    padding: 0px 5px 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #53B1751A;
    font-size: 14px;
    font-weight: 800;
    color: #53B175;
    border-radius: 50px;
}

@media (min-width: 767px) {
    .category-sidebar {
        position: sticky !important;
        top: 99px;
    }
}

/* Sub Category */
.sub-cat-parent-name {
    font-size: 22px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 0.15px;
    padding-bottom: 10px;
    margin-top: 36px;
    margin-bottom: 22px;
    color: #171C19;
    position: relative;
    border-bottom: 1px solid #171C191A;
}

.sub-cat-parent-name:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background-color: #53B175;
}

.sub-cat-container {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.sub-cat-card {
    width: calc((100% / 4) - ((18px / 4) * (4 - 1)));
}

.sub-cat-image {
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 12px 0px #00000005;
    border-radius: 24px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.sub-cat-image > img {
	width: 100px;
    height: 100px !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sub-cat-name,
.sub-cat-price {
    margin-left: 6px;
}

.sub-cat-name {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.15px;
    color: #171C19;
    margin-bottom: 2px;
    word-break: all;
}

.sub-cat-price {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0.15px;
    color: #53B175;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .sub-cat-card {
        width: calc((100% / 2) - ((18px / 2) * (2 - 1)));
    }
}

@media (max-width: 576px) {
    .sub-cat-image {
        border-radius: 16px;    
    }
    
    .sub-cat-image > img {
        width: 90px;
    }
    
    .sub-cat-name {
        font-size: 18px;
        margin-bottom: 0px;
    }
    
    .sub-cat-price {
        font-size: 14px;
    }
}

p.no-data {
	text-align: center;
	margin: 16px 0;
}

.social-links a {
    color: #53B175;
	word-break: break-all;
} 

.recent-post-dec p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.elementor-button span {
	display: flex;
}

.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a {
	font-weight: inherit;
}

[lang="gu"] .elementor-kit-11 {
	--e-global-typography-primary-font-family: "Noto Sans Gujarati";
	--e-global-typography-secondary-font-family: "Noto Sans Gujarati";
	--e-global-typography-text-font-family: "Noto Sans Gujarati";
	--e-global-typography-accent-font-family: "Noto Sans Gujarati";
	font-family: "Noto Sans Gujarati", sans-serif;
}

[lang="gu"] .elementor-kit-11 button,
[lang="gu"] .elementor-kit-11 input[type="button"],
[lang="gu"] .elementor-kit-11 input[type="submit"],
[lang="gu"] .elementor-kit-11 .elementor-button,
[lang="gu"] .elementor-kit-11 a,
[lang="gu"] .elementor-kit-11 h1,
[lang="gu"] .elementor-kit-11 h2,
[lang="gu"] .elementor-kit-11 h3,
[lang="gu"] .elementor-kit-11 h4,
[lang="gu"] .elementor-kit-11 h5,
[lang="gu"] .elementor-kit-11 h6 {
    font-family: "Noto Sans Gujarati", sans-serif;
}

[lang="hi-IN"] .elementor-kit-11 {
	--e-global-typography-primary-font-family: "Hind";
	--e-global-typography-secondary-font-family: "Hind";
	--e-global-typography-text-font-family: "Hind";
	--e-global-typography-accent-font-family: "Hind";
	font-family: "Hind", sans-serif;
}

[lang="hi-IN"] .elementor-kit-11 button,
[lang="hi-IN"] .elementor-kit-11 input[type="button"],
[lang="hi-IN"] .elementor-kit-11 input[type="submit"],
[lang="hi-IN"] .elementor-kit-11 .elementor-button,
[lang="hi-IN"] .elementor-kit-11 a,
[lang="hi-IN"] .elementor-kit-11 h1,
[lang="hi-IN"] .elementor-kit-11 h2,
[lang="hi-IN"] .elementor-kit-11 h3,
[lang="hi-IN"] .elementor-kit-11 h4,
[lang="hi-IN"] .elementor-kit-11 h5,
[lang="hi-IN"] .elementor-kit-11 h6 {
    font-family: "Hind", sans-serif;
}