/* Sankalp Pujan Details Hero Section - Clean Design */
.sankalp-hero-section {
  background: linear-gradient(135deg, rgba(244, 91, 31, 0.08) 0%, rgba(255, 152, 0, 0.08) 100%);
  padding: clamp(1.25rem, -0.3125rem + 5vw, 2.5rem) clamp(0.625rem, -3.2813rem + 12.5vw, 3.75rem);
}

/* Decorative pattern for both sides */
.sankalp-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 10 L60 40 L90 50 L60 60 L50 90 L40 60 L10 50 L40 40 Z' fill='%23f45b1f' fill-opacity='0.08'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='3' fill='%23ff9800' fill-opacity='0.08'/%3E%3C/svg%3E");
  background-position: 0 0, 40px 40px;
  background-size: 100px 100px, 60px 60px;
  background-repeat: repeat;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}


.sankalp-image-container {
  z-index: 10;
}

.sankalp-image-card {
  width: 100%;
  max-width: 600px;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: white;
  padding: 10px;
}

.sankalp-image-slider {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.sankalp-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.sankalp-slide.active {
  opacity: 1;
}

.sankalp-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sankalp-hero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  backdrop-filter: blur(15px);
  padding: clamp(0.375rem, 0.2188rem + 0.5vw, 0.5rem) clamp(1rem, 0.6875rem + 1vw, 1.25rem);
  border-radius: 30px;
  border: 2px solid rgba(244, 91, 31, 0.3);
  z-index: 10;
  font-size: clamp(0.75rem, 0.5938rem + 0.5vw, 0.875rem);
  font-weight: 700;
  color: var(--themeColor);
  box-shadow: 0 8px 25px rgba(244, 91, 31, 0.15);
  animation: badgePulse 3s ease-in-out infinite;
  overflow: hidden;
}

.sankalp-hero-badge::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--themeColor), var(--secondaryColor), var(--themeColor));
  border-radius: 30px;
  z-index: -1;
  animation: borderRotate 4s linear infinite;
}

.sankalp-hero-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 28px;
  z-index: -1;
}

.sankalp-hero-badge span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sankalp-hero-badge span::before {
  content: '✨';
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(244, 91, 31, 0.15);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(244, 91, 31, 0.25);
  }
}

@keyframes borderRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}


.sankalp-hero-content {
  height: 100vh;
  z-index: 10;
  width: 100%;
}

.sankalp-mantra-card {
  background: linear-gradient(135deg, rgba(244, 91, 31, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
  border: 1px solid rgba(244, 91, 31, 0.2);
  border-radius: 10px;
  padding: 12px;
  width: fit-content;
}

.puja-title-creative {
  position: relative;
  margin-bottom: 20px;
}


.title-main-text {
  position: relative;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--textcolor);
  z-index: 2;
  display: block;
  margin-top: 10px;
}

.temple-info-row {
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.phone-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--themeColor) !important;
}

.puja-details-btn-box {
  margin-top: 30px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border: none;
  padding: clamp(0.625rem, 0.5398rem + 0.4545vw, 0.9375rem) clamp(0.625rem, 0.3693rem + 1.3636vw, 1.5625rem);
  ;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(244, 91, 31, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 91, 31, 0.4);
}

.btn-hero-secondary {
  background: white;
  border: 1px solid var(--themeColor);
  color: var(--themeColor);
  padding: clamp(0.625rem, 0.5739rem + 0.2727vw, 0.8125rem) clamp(0.625rem, 0.3693rem + 1.3636vw, 1.5625rem);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244, 91, 31, 0.2);
}

@media (max-width: 768px) {


  .sankalp-image-card {
    height: 300px;
    max-width: 100%;
  }
}

/* Puja Slide Card */
.puja-slide-card {
  height: clamp(350px, 50vh, 450px) !important;
  border-radius: 20px !important;
  background: #000 !important;
  position: relative !important;
  overflow: hidden !important;
  display: block !important;
}

.puja-slide-image {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
}

.puja-slide-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.puja-slide-image::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%) !important;
  z-index: 1 !important;
}

.puja-slide-content {
  position: relative !important;
  z-index: 2 !important;
  padding: clamp(25px, 4vw, 40px) !important;
  height: 100% !important;
}

.puja-slide-content p {
  opacity: 0.85 !important;
}

/* Carousel Indicators */
.carousel-indicators {
  margin-bottom: -40px;
}

.carousel-indicators [data-bs-target] {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  transition: all 0.3s ease;
  margin: 0 6px;
}

.carousel-indicators .active {
  background-color: var(--secondaryColor) !important;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: clamp(40px, 5vw, 50px);
  height: clamp(40px, 5vw, 50px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(244, 91, 31, 0.9);
  border-radius: 50%;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.carousel-control-prev {
  left: clamp(5px, 2vw, 10px);
}

.carousel-control-next {
  right: clamp(5px, 2vw, 10px);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background: var(--themeColor);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

@media (min-width: 1200px) {
  .carousel-control-prev {
    left: -60px;
  }

  .carousel-control-next {
    right: -60px;
  }
}

/* Filter Section Styles */
.filter-section {
  background: #fff;
  padding: clamp(0.625rem, 0.4167rem + 1.1111vw, 1.25rem) 0;
  margin-bottom: clamp(0.9375rem, 0.625rem + 1.6667vw, 1.875rem);
  border-radius: 12px;
  transition: all 0.3s ease;
  z-index: 997;
}

.filter-section.sticky {
  position: fixed;
  top: 85px;
  left: 0;
  right: 0;
  padding: 15px 0;
  margin-bottom: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.filter-container {
  padding: 0 15px;
}

.filter-main-btn {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(244, 91, 31, 0.3);
}

.filter-main-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 91, 31, 0.4);
}

.filter-main-btn svg {
  transition: transform 0.3s ease;
}

.filter-main-btn:hover svg {
  transform: rotate(180deg);
}

.filter-dropdown-btn {
  background: #fff;
  color: var(--textcolor);
  border: 1px solid #e0e0e0;
  padding: clamp(0.5rem, 0.4583rem + 0.2222vw, 0.625rem) clamp(0.875rem, 0.7917rem + 0.4444vw, 1.125rem);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.filter-dropdown-btn:hover {
  border-color: var(--themeColor);
  color: var(--themeColor);
  background: rgba(244, 91, 31, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 91, 31, 0.15);
}

.filter-dropdown-btn.active {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  color: #fff;
  border-color: var(--themeColor);
}

.filter-dropdown-btn svg {
  transition: transform 0.3s ease;
}

.filter-dropdown-btn:hover svg,
.filter-dropdown-btn.active svg {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
  .filter-section.sticky {
    top: 70px;
  }

  .filter-container {
    overflow-x: auto;
    flex-wrap: nowrap !important;
    padding-bottom: 5px;
  }

  .filter-container::-webkit-scrollbar {
    height: 4px;
  }

  .filter-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .filter-container::-webkit-scrollbar-thumb {
    background: var(--themeColor);
    border-radius: 10px;
  }

  .filter-dropdown-btn {
    white-space: nowrap;
  }
}

/* Filter Modal Styles */
.modal-content {
  border-radius: 16px;
  background: #fff;
}

.modal-header {
  padding: 20px 24px 10px;
}

.filter-title-underline {
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 2px;
}

.btn-close-custom {
  width: 40px;
  height: 40px;
  background: rgba(244, 91, 31, 0.1);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--themeColor);
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-close-custom:hover {
  background: rgba(244, 91, 31, 0.2);
  transform: scale(1.1);
}

/* Filter Tabs */
.filter-tabs {
  padding: 10px 15px;
  background-color: #fafafa;
  border-bottom: 1px solid #f0f0f0;
  border-top: 1px solid #f0f0f0;
}

.filter-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-radius: 16px;
  transition: all 0.3s ease;
  min-width: 100px;
}

.filter-tab:not(.active) {
  opacity: 0.6;
}

.filter-tab.active .tab-icon-wrapper {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  color: #fff;
}

.filter-tab:not(.active) .tab-icon-wrapper {
  background: #f5f5f5;
  color: #999;
}

.filter-tab:hover:not(.active) {
  opacity: 0.8;
}

.filter-tab:hover:not(.active) .tab-icon-wrapper {
  background: rgba(244, 91, 31, 0.1);
  color: var(--themeColor);
}

.tab-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

/* Select All */
.select-all-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #d0d0d0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 12px;
  color: transparent;
}

.select-all-checkbox.active {
  background: var(--themeColor);
  border-color: var(--themeColor);
  color: #fff;
}

.borderBottom {
  border-bottom: 1px solid #f0f0f0;
}

/* Tab Content */
.tab-content {
  min-height: 250px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* Filter Cards (for Deity tab) */
.filter-card {
  transition: all 0.3s ease;
}

.filter-card-image {
  position: relative;
  border-radius: clamp(8px, 2vw, 12px);
  overflow: hidden;
  aspect-ratio: 1;
  background: #f8f8f8;
  height: clamp(60px, 15vw, 80px);
  width: clamp(60px, 15vw, 80px);
  margin: 0 auto;
}

.filter-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.filter-card-checkbox {
  position: absolute;
  top: clamp(2px, 1vw, 4px);
  right: clamp(2px, 1vw, 4px);
  width: clamp(14px, 4vw, 18px);
  height: clamp(14px, 4vw, 18px);
  background: #fff;
  border: 2px solid #d0d0d0;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(8px, 2vw, 10px);
  color: transparent;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-card.selected .filter-card-checkbox {
  background: var(--themeColor);
  border-color: var(--themeColor);
  color: #fff;
}

.filter-card:hover .filter-card-image img {
  transform: scale(1.05);
}

.filter-card:hover .filter-card-checkbox {
  border-color: var(--themeColor);
}

/* Custom Form Checks */
.form-check-custom {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-check-input-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #d0d0d0;
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}

.form-check-input-custom:checked {
  background: var(--themeColor);
  border-color: var(--themeColor);
}

.form-check-input-custom:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

.form-check-label-custom {
  user-select: none;
  color: var(--textcolor);
}

/* Modal Footer Buttons */
.modal-footer {
  padding: clamp(16px, 4vw, 20px) clamp(20px, 5vw, 24px);
  gap: clamp(8px, 2vw, 12px);
}

.btn-clear-filter {
  padding: clamp(8px, 2.5vw, 10px) clamp(24px, 6vw, 32px);
  border: 1px solid var(--themeColor);
  border-radius: 25px;
  background: transparent;
  color: var(--themeColor);
  transition: all 0.3s ease;
}

.btn-clear-filter:hover {
  background: rgba(244, 91, 31, 0.1);
}

.btn-apply-filter {
  padding: clamp(10px, 2.5vw, 12px) clamp(24px, 6vw, 32px);
  border: none;
  border-radius: 25px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  color: #fff;
  transition: all 0.3s ease;
}

.btn-apply-filter:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 91, 31, 0.4);
}


/* Responsive with clamp */
.filter-tabs {
  gap: clamp(12px, 2vw, 20px);
}

.filter-tab {
  min-width: clamp(70px, 15vw, 100px);
  padding: clamp(10px, 2vw, 16px) clamp(14px, 3vw, 20px);
}

.tab-icon-wrapper {
  width: clamp(35px, 8vw, 50px);
  height: clamp(35px, 8vw, 50px);
  font-size: clamp(14px, 3vw, 20px);
}

/* Puja details page  */

/* Puja tabs list */
.puja-tabs {
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: clamp(0.125rem, 0.5vw, 0.75rem);
}

.puja-tabs .nav-link {
  color: var(--textDark);
  padding: clamp(6px, 1.5vw, 10px) clamp(8px, 2vw, 14px);
  border-radius: 30px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.puja-tabs .nav-link:hover {
  background: rgba(227, 125, 48, 0.12);
  color: var(--themeColor);
}

.puja-tabs .nav-link.active {
  background: var(--themeColor);
  color: #fff !important;
}

.puja-tabs::-webkit-scrollbar {
  display: none;
}

.tabs-container {
  top: 85px !important;
  z-index: 99 !important;
  ;
}

.disclamer-card {
  background-color: #fff;
  border: 1px solid #e37d3030;

}

.scrollspy-container section {
  scroll-margin-top: 130px;
}

@media (max-width: 768px) {
  .puja-tabs-wrap .container {
    padding: 0;
  }

}

/* Puja Tabs Navigation Styling */
.puja-tabs-wrap {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.puja-tabs {
  padding: 12px 0 !important;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.puja-tabs::-webkit-scrollbar {
  height: 3px;
}

.puja-tabs::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.puja-tabs::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 10px;
}

.puja-tabs .nav-item {
  flex-shrink: 0;
}

.puja-tabs .nav-link {
  background: #fff;
  color: #666;
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.puja-tabs .nav-link:hover {
  color: #fa7d0d;
  background: linear-gradient(135deg, #f45b1f2b 0%, #ff980012 100%);
}

.puja-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  color: #fff;
  border-color: var(--themeColor);
}

/* Responsive Design */
@media (max-width: 768px) {
  .tabs-container {
    position: sticky !important;
    top: 65px !important;
    z-index: 996;
  }

  .puja-tabs {
    padding-left: 15px;
    padding-right: 15px;
  }

  .puja-tabs .nav-link {
    font-size: 13px;
    padding: 7px 16px;
  }
}

@media (max-width: 576px) {
  .puja-tabs .nav-link {
    font-size: 12px;
    padding: 6px 14px;
  }

  .modal-next-btn {
    min-width: 150px !important;
  }
}

/* About Section Simple Design */
.about-section {
  background: linear-gradient(180deg, #fff 0%, rgba(244, 91, 31, 0.02) 100%);
}

/* Benefits Section */
.benefits-section {
  background: linear-gradient(135deg, rgba(244, 91, 31, 0.05) 0%, rgba(255, 152, 0, 0.08) 50%, rgba(244, 91, 31, 0.03) 100%);
}

/* Benefit Cards */
.benefit-card {
  border: 1px solid rgba(244, 91, 31, 0.1) !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 20px 0px;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(244, 91, 31, 0.15);
  border-color: rgba(244, 91, 31, 0.2) !important;
}

.benefit-icon {
  width: clamp(60px, 12vw, 80px);
  height: clamp(60px, 12vw, 80px);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.3s ease;
  animation: bipulse 2s infinite;
}

.benefit-icon i {
  color: white;
  font-size: clamp(24px, 5vw, 32px);
}

@keyframes bipulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(244, 91, 31, 0.4);
  }

  50% {
    transform: scale(1.03);
    box-shadow: 0 0 0 10px rgba(244, 91, 31, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(244, 91, 31, 0);
  }
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.om-badge {
  background: rgba(244, 91, 31, 0.1);
  border: 1px solid rgba(244, 91, 31, 0.2);
  border-radius: 50px;
  color: var(--themeColor);
}

.section-title {
  font-size: clamp(28px, 5vw, 42px);
}

.about-content {
  padding-right: clamp(15px, 3vw, 30px);
}

.about-image-wrapper {
  border-radius: 20px;
}

.about-image {
  width: 100%;
  height: clamp(200px, 50vw, 400px);
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 20px;
}

.about-image:hover {
  transform: scale(1.02);
}

.image-stats {
  bottom: clamp(15px, 3vw, 20px);
  left: clamp(15px, 3vw, 20px);
  right: clamp(15px, 3vw, 20px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: clamp(15px, 3vw, 20px);
}


/* Process Section */
.process-section {
  background: #f8f9fa;
}

.process-step {
  background: white !important;
  border: 1px solid #e9ecef !important;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(244, 91, 31, 0.3) !important;
}

.process-icon-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Temple Details Section */
.temple-details-section {
  background: #f8f9fa;
}

.temple-image-wrapper {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.temple-overlay {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.temple-badge {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Section Redesign */


.mantra-badge {
  border: 1px solid rgba(244, 91, 31, 0.2);
  max-width: fit-content;
}

.hero-title-section {
  position: relative;
}

.title-underline {
  width: 80px;
  height: 4px;
  border-radius: 2px;
}

.hero-features .feature-item i {
  font-size: 16px;
  width: 20px;
}

.btn-primary-hero {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(244, 91, 31, 0.3);
}

.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 91, 31, 0.4);
}

.btn-secondary-hero {
  background: white;
  border: 2px solid var(--themeColor);
  transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
  background: var(--themeColor);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244, 91, 31, 0.2);
}

.btn-secondary-hero:hover span,
.btn-secondary-hero:hover i {
  color: white !important;
}

/* Hero Section Premium Design */
.puja-hero-image-container {
  overflow: hidden;
}

.puja-hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}


.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.mantra-text-compact {
  font-size: clamp(0.65rem, 0.5938rem + 0.5vw, 0.875rem);
  color: var(--themeColor);
  font-weight: 500;
  text-align: center;
}

.puja-title-creative {
  position: relative;
  margin-bottom: 20px;
}

.title-bg-text {
  position: absolute;
  font-size: clamp(1.8rem, 8vw, 4rem);
  font-weight: 900;
  color: rgba(244, 91, 31, 0.1);
  z-index: 1;
  top: clamp(0.5625rem, 0.8864rem + -1.7273vw, -0.625rem);
  left: 0;
}

.title-main-text {
  position: relative;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--textcolor);
  z-index: 2;
  display: block;
  margin-top: 10px;
}

.temple-info-row {
  margin: 12px 0;
  padding: clamp(0.75rem, 0.5156rem + 0.75vw, 0.9375rem) 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.phone-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--themeColor) !important;
}

.puja-details-btn-box {
  margin-top: 30px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(244, 91, 31, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 91, 31, 0.4);
}


@media (max-width: 768px) {
  .puja-hero-content {
    padding: 40px 20px;
  }

  .puja-details-hero-row {
    flex-direction: column-reverse;
  }

  .puja-hero-image-container {
    height: 50vh;
  }
}




/* Package Cards  */
#package-basic,
#package-pro,
#package-ultimate {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
}

#package-basic:hover,
#package-pro:hover,
#package-ultimate:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(244, 91, 31, 0.15);
}

/* Package Image at Top */
.package-image {
  width: 100%;
  height: 180px;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pricing-card:hover .package-image img {
  transform: scale(1.05);
}

/* Orange Gradient Headers - Same for All */
.pricing-header {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  padding: 4px 12px;
  min-width: 90px;
  max-width: fit-content;
  position: absolute;
  top: 6px;
  left: 6px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(227, 125, 48, 0.5);
}

/* White Content Area */
.pricing-content {
  padding: 16px;
  background: #fff;
}

/* Feature Tags */
.feature-item {
  background: rgba(244, 91, 31, 0.1);
  padding: 4px 8px;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-content {
    padding: 20px 16px;
  }
}

/* Puja Hero Section (puja.html) - Keep for puja.html */
.puja-hero-section {
  background: linear-gradient(135deg, rgba(244, 91, 31, 0.05) 0%, rgba(255, 152, 0, 0.05) 100%);
  padding: 60px 0;
  min-height: 400px;
}

.puja-hero-section .container {
  position: relative;
  z-index: 1;
}

.puja-hero-section .large-heading {
  position: relative;
  z-index: 1;
  font-size: clamp(1.25rem, 0.9773rem + 1.4545vw, 2.25rem);
}

/* Puja Hero Badge for Carousel */
.puja-slide-content .puja-hero-badge {
  position: relative;
  top: auto;
  left: auto;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 91, 31, 0.2);
}

.puja-slide-content .puja-hero-badge::before,
.puja-slide-content .puja-hero-badge::after {
  display: none;
}

/* Responsive for Puja Hero */
@media (max-width: 768px) {
  .puja-hero-section {
    padding: 40px 0;
  }
}

/* Clean Feature Tags */
#package-basic .feature-item,
#package-pro .feature-item,
#package-ultimate .feature-item {
  background: #f8f8f8;
  padding: 8px 14px;
  border-radius: 20px;
  color: #555;
  font-weight: 500;
  border: 1px solid #efefef;
  transition: all 0.3s ease;
}

#package-basic .feature-item:hover,
#package-pro .feature-item:hover,
#package-ultimate .feature-item:hover {
  background: rgba(244, 91, 31, 0.08);
  border-color: rgba(244, 91, 31, 0.2);
  color: var(--themeColor);
}

/* Premium Button */
#package-basic .pricing-btn,
#package-pro .pricing-btn,
#package-ultimate .pricing-btn {
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(244, 91, 31, 0.25);
}

#package-basic .pricing-btn:hover,
#package-pro .pricing-btn:hover,
#package-ultimate .pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 91, 31, 0.35);
}

.py-12 {
  padding: 12px;
}

/* bottom button in puja pacakage */
.mobile-puja-fixed {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: 90%;
}

/* For offering-details page - hide cart button by default */
.offering-details-page .mobile-puja-fixed {
  display: none;
}

.puja-scroll-btn {
  text-decoration: none;
  background: linear-gradient(130deg, rgb(254 146 3), #f5601c);
  border-radius: 28px;
  padding: 12px 22px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 0px rgb(227 125 48);

}

.puja-scroll-btn .arrow {
  animation: arrowMove 1.4s ease-in-out infinite;
  transition: transform 0.25s ease;
}

@keyframes arrowMove {
  0% {
    transform: translateX(0);
  }

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

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


/* ========================================
   Chadhava Offering Cards - New Layout
   ======================================== */

.chadhava-offering-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(244, 91, 31, 0.1);
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(145deg, transparent 35%, rgba(244, 91, 31, 0.4), rgb(246 104 24)) border-box;
  border: 2px solid transparent;
}

.chadhava-offering-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(244, 91, 31, 0.2);
  border-color: rgba(244, 91, 31, 0.3);
}

.chadhava-offering-img {
  height: 100%;
  min-height: 240px;
  max-height: 240px;
  overflow: hidden;
}

.chadhava-offering-img img {
  transition: transform 0.5s ease;
}

.chadhava-offering-card:hover .chadhava-offering-img img {
  transform: scale(1.1);
}

.chadhava-date-tag {
  top: 12px;
  left: 12px;
  background: linear-gradient(170deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border: 1px solid #ffffff63;
  padding: 4px 10px;
  border-radius: 6px 0px;
  box-shadow: 0 4px 12px rgba(244, 91, 31, 0.3);
  z-index: 2;
}

.chadhava-offering-body {
  min-height: 240px;
}

.chadhava-meta-info {
  flex-grow: 1;
}

.chadhava-meta-info i {
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .chadhava-offering-card .row {
    flex-direction: column;
  }

  .chadhava-offering-img {
    min-height: 200px;
  }

  .chadhava-offering-body {
    min-height: auto;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .chadhava-offering-img {
    min-height: 220px;
  }
}


/* ========================================
   About Sacred Offering Section - Premium (No Media Queries)
   ======================================== */
.about-offering-section {
  background: linear-gradient(135deg, #fef9f6 0%, #ffffff 50%, #fef9f6 100%);
}

.offering-bg-pattern {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(244, 91, 31, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(244, 91, 31, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.section-divider {
  width: clamp(60px, 10vw, 80px);
  height: 4px;
  background: linear-gradient(90deg, transparent, #F45B1F, transparent);
  border-radius: 2px;
}

.offering-main-title {
  font-size: clamp(28px, 5vw, 42px);
}

.offering-content-wrapper {
  max-width: 1000px;
}

.offering-block-title {
  padding-left: clamp(15px, 2vw, 20px);
}

.offering-block-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(4px, 0.5vw, 5px);
  height: clamp(24px, 4vw, 30px);
  background: linear-gradient(180deg, #F45B1F 0%, #FF6B35 100%);
  border-radius: 3px;
}

.offering-text {
  line-height: clamp(24px, 3vw, 28px) !important;
}



/* ========================================
   Puja Video Section
   ======================================== */

.puja-video-wrapper {
  border-radius: 16px;
}

.puja-video-player {
  display: block;
  width: 100%;
  aspect-ratio: 12/9;
  object-fit: cover;
}

/* Play Icon Overlay */
.video-play-icon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.puja-video-wrapper:hover .video-play-icon-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.video-play-button {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #F45B1F 0%, #FF6B35 100%);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(244, 91, 31, 0.5);
  transition: transform 0.3s ease;
}

.video-play-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(244, 91, 31, 0.7);
  animation: video-pulse-animation 2s ease-out infinite;
}

@keyframes video-pulse-animation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

.puja-video-wrapper:hover .video-play-button {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(244, 91, 31, 0.7);
}

.video-play-button i {
  margin-left: 4px;
}

/* Hide overlay when video plays */
.puja-video-wrapper.playing .video-play-icon-overlay {
  display: none;
}

.icon-circle {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, rgb(244 91 31 / 77%) 0%, rgb(255 107 53 / 55%) 100%);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--theme-color, #F45B1F);
  position: relative;
  transition: all 0.3s ease;
}

.icon-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(244, 91, 31, 0.3);
  animation: icon-circle-pulse 2.5s ease-out infinite;
}

@keyframes icon-circle-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
}

.icon-circle:hover {
  background: linear-gradient(135deg, rgba(244, 91, 31, 0.15) 0%, rgba(255, 107, 53, 0.2) 100%);
  transform: scale(1.05);
}

/* ========================================
   Significance Section - Minimal CSS
   ======================================== */

.bilva-significance-section {
  background: linear-gradient(180deg, #fff8f5 0%, #ffffff 50%, #f5f5f5 100%);
}

.bilva-significance-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 91, 31, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.bilva-significance-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 91, 31, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.bilva-significance-section .container {
  position: relative;
  z-index: 1;
}

/* Quote Section */
.bilva-quote-section {
  background: linear-gradient(135deg, rgba(244, 91, 31, 0.04) 0%, rgba(255, 107, 53, 0.06) 100%);
  border: 1px solid rgba(244, 91, 31, 0.12);
  box-shadow: 0 6px 25px rgba(244, 91, 31, 0.08);
}

.bilva-quote-section::before {
  content: '"';
  position: absolute;
  top: -6px;
  left: 30px;
  font-size: 60px;
  color: var(--theme-color, #F45B1F);
  font-weight: bold;
  line-height: 1;
  opacity: 0.2;
  z-index: 1;
}

.bilva-quote-section::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(244, 91, 31, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}



/* Icon Background with Line Animation */
.icon-bg-line {
  position: relative;
}

.icon-bg-line::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--theme-color, #F45B1F) 100%);
  animation: slide-line 2s ease-in-out infinite;
}

@keyframes slide-line {

  0%,
  100% {
    width: 0;
    opacity: 0;
  }

  50% {
    width: 25px;
    opacity: 1;
  }
}

/* Rotating Border Animation */
.icon-bg-line::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, var(--theme-color, #F45B1F), #FF6B35, var(--theme-color, #F45B1F));
  background-size: 200% 200%;
  border-radius: 10px;
  animation: rotate-border 3s linear infinite;
  z-index: -1;
}

@keyframes rotate-border {
  0% {
    background-position: 0% 50%;
    transform: rotate(0deg);
  }

  100% {
    background-position: 100% 50%;
    transform: rotate(360deg);
  }
}

/* ========================================
   Available Offerings Section
   ======================================== */

.offering-card-new {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(244, 91, 31, 0.1);
}

.offering-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(244, 91, 31, 0.2) !important;
  border-color: rgba(244, 91, 31, 0.3);
}

.offering-image-wrapper {
  height: clamp(200px, 30vw, 200px);
  border-radius: 16px;
}

.offering-image-wrapper img {
  transition: transform 0.6s ease;
}

.offering-card-new:hover .offering-image-wrapper img {
  transform: scale(1.15);
}

.offering-overlay {
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.offering-card-new:hover .offering-overlay {
  opacity: 1;
}

.qty-controls-new {
  background: linear-gradient(135deg, rgba(244, 91, 31, 0.05) 0%, rgba(255, 107, 53, 0.08) 100%);
  padding: 4px 6px;
  box-shadow: inset 0 2px 8px rgba(244, 91, 31, 0.1);
}

.qty-btn-new {
  width: 20px;
  height: 20px;
  border: none;
  background: #ffffff;
  color: var(--theme-color, #F45B1F);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(244, 91, 31, 0.15);
}

.qty-btn-new::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--theme-color, #F45B1F) 0%, var(--secondaryColor, #FF6B35) 100%);
  border-radius: 50%;
  transition: transform 0.4s ease;
  z-index: 0;
}

.qty-btn-new:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.qty-btn-new svg {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.qty-btn-new:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(244, 91, 31, 0.3);
}

.qty-btn-new:hover svg {
  stroke: #ffffff;
}

.qty-btn-new:active {
  transform: scale(0.95);
}

.qty-display-new {
  width: clamp(20px, 2vw, 30px);
  border: none;
  background: transparent;
  color: var(--theme-color, #F45B1F);
  font-size: clamp(14px, 2vw, 16px);
  margin: 0 4px;
}

.qty-display-new:focus {
  outline: none;
}

.qty-display-new::-webkit-inner-spin-button,
.qty-display-new::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-display-new {
  -moz-appearance: textfield;
}

/* Puja Countdown Timer - New Design */
.puja-countdown-timer {
  animation: slideInUp 0.6s ease-out;
}

.countdown-wrapper {
  border: 1px solid rgba(244, 91, 31, 0.15);
  transition: all 0.3s ease;
  border-radius: 12px;
  width: fit-content;
  padding: 12px 16px;
}

.countdown-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 91, 31, 0.15);
}


.number-group {
  min-width: 32px;
}

.countdown-number {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-unit {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.countdown-separator {
  font-size: 16px;
  font-weight: 600;
  color: var(--themeColor);
  margin: 0 4px;
  animation: blink 2s ease-in-out infinite;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0.3;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .countdown-wrapper {
    flex-direction: column;
    width: 100%;
  }

  .countdown-numbers {
    align-self: stretch;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .countdown-numbers {
    gap: 8px;
  }

  .number-group {
    min-width: 28px;
  }

  .countdown-number {
    font-size: 16px;
  }
}

/* Top-Bottom Seconds Animation */
.seconds-animate {
  animation: secondsTopBottom 1s ease-in-out infinite;
}

@keyframes secondsTopBottom {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* Active Offering Card Styles - Simple Border Only */
.offering-card-new.active {
  border: 1px solid #f87312 !important;
  transition: all 0.3s ease;
}


/* Charitable Activity */
.tab-content-section {
  display: none;
}

.tab-content-section.active {
  display: block;
}

.campaign-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    5px 5px 1px rgb(252 135 8), 0 0px 4px rgb(254 145 4 / 77%);
  transition:
    transform 0.35s cubic-bezier(.4, 0, .2, 1),
    box-shadow 0.35s cubic-bezier(.4, 0, .2, 1);
}

.campaign-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 4px 0px rgb(237 145 75), 0 2px 5px rgb(230 130 55);
}


.campaign-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.verified-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #4a7a10;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.campaign-body {
  padding: 14px 14px 18px;
  height: 220px;
}

.campaign-progress {
  height: 6px !important;
  background: #eee;
  border-radius: 10px;
}

.campaign-progress .progress-bar {
  width: 12%;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 10px;
}

.contribute-btn {
  padding: 10px 14px !important;
}

.text-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Donors css */
.donor-tile {
  padding: 14px 16px 14px 20px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.donor-tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom,
      var(--themeColor),
      rgba(227, 125, 48, 0.3));
}

.donor-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.donor-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(227, 125, 48, 0.12);
  color: var(--themeColor);
}

.donor-chip {
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(227, 125, 48, 0.12);
  color: var(--themeColor);
  white-space: nowrap;
}

.sevas-card {
  background: rgb(227 125 48 / 4%);
  border-radius: 16px;
  border-bottom: 3px solid var(--themeColor);
}

.icon-bg {
  background-color: rgba(244, 91, 31, 0.15);
  border-radius: 50%;
  height: 20px;
  width: 20px;
}


/* From Uiverse.io by bhaveshxrawat */
.charitable-hero-card {
  place-content: center;
  place-items: center;
  border-radius: 14px;
  padding: clamp(1rem, 0.375rem + 2vw, 1.5rem);
}

.charitable-hero-card::before {
  content: '';
  position: absolute;
  width: 179px;
  background-image: linear-gradient(180deg, #ff9800, #F45B1F);
  height: 140%;
  animation: rotBGimg 3s linear infinite;
  transition: all 0.2s linear;
}

@keyframes rotBGimg {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.charitable-hero-card::after {
  content: '';
  position: absolute;
  background-color: #f7ebe6;
  inset: 5px;
  border-radius: 15px;
}

/* hero section charitable details */
.donation-support-panel {
  background: var(--white);
  border-radius: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(227, 125, 48, 0.3);
}

.trust-pill {
  padding: 5px 10px;
  border-radius: 14px;
}

.trust-pill.verified {
  background: #eaf7ef;
  color: #1b7f4d;
}

.trust-pill.tax {
  background: #fff4e8;
  color: #b45309;
}

.trust-pill.ongoing {
  background: #eef2ff;
  color: #3730a3;
}

.amount-chip {
  padding: 6px 14px;
  border-radius: 18px;
  background: rgba(227, 125, 48, 0.08);
  color: var(--themeColor);
  border: 1px solid rgba(227, 125, 48, 0.15);
}

.amount-chip.active {
  background: linear-gradient(0deg, #f39c5a, var(--themeColor));
  color: #fff;
  border-color: var(--themeColor);
}

.charitable-details-row {
  padding: clamp(0.5rem, 0.2215rem + 1.3924vw, 1.875rem) clamp(0.625rem, 0.4984rem + 0.6329vw, 1.25rem);
}

.rupee-inside {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.donation-amount-input {
  padding-left: 35px !important;
}


/* Mobile Responsive - Hero Title Font Size */
@media (max-width: 768px) {
  .hero-title {
    line-height: 1.3 !important;
  }

}

/* Update Section css */

/* Story Section Styles */
.story-section-bg {
  background: linear-gradient(135deg, rgb(249 249 249 / 80%) 0%, rgb(243 243 243 / 60%) 50%, rgb(255 255 255 / 80%) 100%);
}

.story-section-bg h2 {
  line-height: 1.4;
}

.story-section-bg p strong {
  color: var(--textDark);
  font-weight: 600;
}

/* Decorative Vectors */
.story-vector-top-left {
  top: 20px;
  left: 20px;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
  animation: floatTopLeft 6s ease-in-out infinite;
}

.story-vector-bottom-right {
  bottom: 20px;
  right: 20px;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
  animation: floatBottomRight 7s ease-in-out infinite;
}

/* Flower Animations */
@keyframes floatTopLeft {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(10px, -10px) rotate(2deg);
  }

  50% {
    transform: translate(5px, 5px) rotate(-1deg);
  }

  75% {
    transform: translate(-5px, 10px) rotate(1deg);
  }
}

@keyframes floatBottomRight {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(-10px, 10px) rotate(-2deg);
  }

  50% {
    transform: translate(-5px, -5px) rotate(1deg);
  }

  75% {
    transform: translate(5px, -10px) rotate(-1deg);
  }
}

.read-more-btn {
  transition: all 0.3s ease;
  padding: 8px 0;
}

.read-more-btn:hover {
  gap: 12px !important;
  color: var(--secondaryColor) !important;
}

.read-more-btn i {
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .story-section-bg h2 {
    font-size: 24px !important;
  }

  .story-vector-top-left svg,
  .story-vector-bottom-right svg {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 576px) {
  .story-section-bg h2 {
    font-size: 20px !important;
  }

  .story-vector-top-left svg,
  .story-vector-bottom-right svg {
    width: 100px;
    height: 100px;
  }

  .story-vector-top-left {
    top: -10px;
    left: -10px;
  }

  .story-vector-bottom-right {
    bottom: -15px;
    right: -15px;
  }

  /* Reduce animation on mobile for performance */
  .story-vector-top-left,
  .story-vector-bottom-right {
    animation-duration: 8s;
  }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

  .story-vector-top-left,
  .story-vector-bottom-right {
    animation: none;
  }
}


/* ============================================
   PREMIUM UPDATES SECTION - CLAMP BASED
   ============================================ */

/* Section Background */
.updates-section-premium {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  position: relative;
}

/* Updates Badge */
.updates-badge {
  background: linear-gradient(135deg, rgba(244, 91, 31, 0.08) 0%, rgba(255, 152, 0, 0.08) 100%);
  color: var(--themeColor);
  padding: clamp(6px, 1.5vw, 8px) clamp(16px, 4vw, 20px);
  border-radius: 50px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(244, 91, 31, 0.15);
}

.updates-badge svg {
  color: var(--themeColor);
  width: clamp(14px, 3vw, 16px);
  height: clamp(14px, 3vw, 16px);
}

/* Timeline Container */
.updates-timeline-premium {
  position: relative;
  padding-left: 0;
}

/* Timeline Vertical Line */
.updates-timeline-premium::before {
  content: '';
  position: absolute;
  left: clamp(19px, 4vw, 23px);
  top: clamp(20px, 5vw, 25px);
  bottom: clamp(40px, 8vw, 50px);
  width: 2px;
  background: linear-gradient(180deg,
      rgba(244, 91, 31, 0.3) 0%,
      rgba(244, 91, 31, 0.1) 50%,
      rgba(244, 91, 31, 0.05) 100%);
}

/* Update Item */
.update-item-premium {
  position: relative;
  padding-left: clamp(50px, 10vw, 70px);
  margin-bottom: clamp(32px, 6vw, 40px);
}

.update-item-premium:last-child {
  margin-bottom: 0;
}

/* Timeline Dot */
.update-timeline-dot {
  position: absolute;
  left: clamp(12px, 2.5vw, 16px);
  top: 8px;
  width: clamp(14px, 3vw, 16px);
  height: clamp(14px, 3vw, 16px);
  background: white;
  border: 3px solid var(--themeColor);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(244, 91, 31, 0.1);
}

/* Status-specific Timeline Dots */
.update-timeline-dot.ongoing-dot {
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.update-timeline-dot.upcoming-dot {
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.update-timeline-dot.completed-dot {
  border-color: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.update-timeline-dot.announcement-dot {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

/* Update Content Card */
.update-content-premium {
  background: white;
  border-radius: clamp(12px, 3vw, 16px);
  padding: clamp(16px, 4vw, 20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.update-content-premium:hover {
  box-shadow: 0 8px 24px rgba(244, 91, 31, 0.12);
  border-color: rgba(244, 91, 31, 0.2);
}

/* Update Icon */
.update-icon-premium {
  width: clamp(36px, 7vw, 40px);
  height: clamp(36px, 7vw, 40px);
  border-radius: clamp(10px, 2vw, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.update-icon-premium svg {
  width: clamp(16px, 3.5vw, 18px);
  height: clamp(16px, 3.5vw, 18px);
}

.update-icon-premium.success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.update-icon-premium.ongoing {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.update-icon-premium.upcoming {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
}

.update-icon-premium.announcement {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
}

/* Status Badges */
.update-status-badge {
  display: inline-block;
  padding: clamp(3px, 1vw, 4px) clamp(10px, 2.5vw, 12px);
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.update-status-badge.ongoing {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.update-status-badge.upcoming {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.update-status-badge.completed {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.update-status-badge.announcement {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}

/* Animation on Scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.update-item-premium {
  animation: fadeInUp 0.6s ease-out;
}

.update-item-premium:nth-child(1) {
  animation-delay: 0.1s;
}

.update-item-premium:nth-child(2) {
  animation-delay: 0.2s;
}

.update-item-premium:nth-child(3) {
  animation-delay: 0.3s;
}

.update-item-premium:nth-child(4) {
  animation-delay: 0.4s;
}


/* ============================================
   DONORS SECTION - CLAMP BASED
   ============================================ */

/* Section Background */
.donors-section-premium {
  background: linear-gradient(180deg, #fff 0%, rgba(244, 91, 31, 0.02) 100%);
  position: relative;
}

/* Donors Badge */
.donors-badge {
  background: linear-gradient(135deg, rgba(244, 91, 31, 0.08) 0%, rgba(255, 152, 0, 0.08) 100%);
  color: var(--themeColor);
  padding: clamp(6px, 1.5vw, 8px) clamp(16px, 4vw, 20px);
  border-radius: 50px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(244, 91, 31, 0.15);
}

.donors-badge svg {
  color: var(--themeColor);
  width: clamp(14px, 3vw, 16px);
  height: clamp(14px, 3vw, 16px);
}

/* Donors Tabs */
.donors-tabs .nav-link {
  background: white;
  color: var(--textColor);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.donors-tabs .nav-link:hover {
  background: rgba(244, 91, 31, 0.05);
  border-color: rgba(244, 91, 31, 0.2);
  color: var(--themeColor);
}

.donors-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(244, 91, 31, 0.3);
}

/* Donor Card */
.donor-card-premium {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 3px 1px rgba(244, 91, 31, 0.3);
  border: 1px solid rgba(244, 91, 31, 0.1) !important;
  padding: 12px;
}

.donor-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(244, 91, 31, 0.15);
  border-color: rgba(244, 91, 31, 0.2) !important;
}

/* Donor Avatar */
.donor-avatar-premium .donor-icon-premium {
  width: clamp(45px, 8vw, 50px);
  height: clamp(45px, 8vw, 50px);
  background: linear-gradient(135deg, rgba(244, 91, 31, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
  color: rgb(244 91 31 / 70%);
  font-size: clamp(16px, 3vw, 18px);
}

.donor-avatar-premium .donor-icon-premium.top {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  color: white;
}

/* Top Donor Card */
.donor-card-premium.top-donor-premium {
  border: 2px solid var(--themeColor) !important;
  background: linear-gradient(135deg, rgba(244, 91, 31, 0.03) 0%, rgba(255, 152, 0, 0.03) 100%);
}

.top-donor-badge-premium {
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  color: white;
  padding: clamp(4px, 1vw, 6px) clamp(10px, 2vw, 14px);
  border-radius: 20px;
  font-size: clamp(11px, 2vw, 12px);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(244, 91, 31, 0.3);
}

/* Donor Amount */
.donor-amount-premium {
  text-align: right;
  background-color: rgba(244, 91, 31, 0.08);
  padding: 4px 12px;
  border-radius: 6px;
}

/* Tab Content Animation */
.tab-pane {
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.donars-tab {
  box-shadow: 0px 0px 4px #dbdbdb;
}

/* TEMPLES SECTION PREMIUM  */

/* Section Background */
.temples-section-premium {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

/* Section Badge */
.temples-section-badge {
  background: linear-gradient(135deg, rgba(244, 91, 31, 0.08) 0%, rgba(255, 152, 0, 0.08) 100%);
  color: var(--themeColor);
  padding: clamp(6px, 1.5vw, 8px) clamp(16px, 4vw, 20px);
  border-radius: 50px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(244, 91, 31, 0.15);
}

/* ============================================
   ULTRA PREMIUM TEMPLE CARDS
   ============================================ */

.temple-card-ultra {
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  border-radius: clamp(24px, 4vw, 32px) clamp(8px, 1.5vw, 12px) clamp(24px, 4vw, 32px) clamp(8px, 1.5vw, 12px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(244, 91, 31, 0.05);
}


.temple-card-ultra:hover::before {
  opacity: 1;
}

.temple-card-ultra:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow:
    0 20px 50px rgba(244, 91, 31, 0.25),
    0 0 0 1px rgba(244, 91, 31, 0.15);
}

/* Image Box - Creative Shape */
.temple-ultra-img-box {
  height: clamp(240px, 45vw, 280px);
  transition: clip-path 0.5s ease;
}

.temple-card-ultra:hover .temple-ultra-img-box {
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 95%);
}

.temple-ultra-img {
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: brightness(0.95) contrast(1.05);
}

.temple-card-ultra:hover .temple-ultra-img {
  transform: scale(1.1);
  filter: brightness(1) contrast(1.1);
}

/* Ultra Overlay with Creative Gradient */
.temple-ultra-overlay {
  background: linear-gradient(135deg,
      rgba(244, 91, 31, 0.15) 0%,
      rgba(255, 152, 0, 0.1) 30%,
      rgba(0, 0, 0, 0.6) 100%);
  opacity: 0.85;
  transition: all 0.5s ease;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.temple-card-ultra:hover .temple-ultra-overlay {
  background: linear-gradient(135deg,
      rgba(244, 91, 31, 0.25) 0%,
      rgba(255, 152, 0, 0.2) 30%,
      rgba(0, 0, 0, 0.75) 100%);
  opacity: 0.9;
}

/* Floating Badge - Om Icon with Glassmorphism */
.temple-floating-badge {
  top: clamp(10px, 3vw, 15px);
  right: clamp(10px, 3vw, 15px);
  width: clamp(35px, 7vw, 40px);
  height: clamp(35px, 7vw, 40px);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50% 50% 50% 10%;
  color: white;
  box-shadow:
    0 8px 24px rgba(244, 91, 31, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
  transition: all 0.4s ease;
}

.temple-card-ultra:hover .temple-floating-badge {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 50%;
  transform: rotate(360deg) scale(1.1);
  border-color: rgba(255, 255, 255, 0.5);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Location Chip - Glassmorphism */
.temple-location-chip {
  bottom: clamp(16px, 3vw, 20px);
  left: clamp(10px, 3vw, 15px);
  background: rgb(255 255 255 / 46%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: clamp(6px, 1.4vw, 8px) clamp(12px, 3vw, 14px);
  border-radius: 50px 50px 50px 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.temple-card-ultra:hover .temple-location-chip {
  transform: translateX(8px) scale(1.05);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  box-shadow:
    0 10px 30px rgba(244, 91, 31, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.location-dot {
  width: clamp(8px, 1.5vw, 10px);
  height: clamp(8px, 1.5vw, 10px);
  background: var(--themeColor);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.temple-card-ultra:hover .location-dot {
  background: white;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

/* Content Box with Creative Shape */
.temple-ultra-content {
  background: linear-gradient(180deg, #ffffff 0%, #fefefe 100%);
  z-index: 2;
}

.temple-card-ultra:hover .temple-ultra-content::before {
  opacity: 1;
}

.temple-ultra-content::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(50px, 10vw, 70px);
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--themeColor) 50%, transparent 100%);
  border-radius: 50px;
  opacity: 0.3;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Content Inner */
.temple-content-inner {
  min-height: clamp(190px, 35vw, 200px);
  padding: 14px;
}

/* Action Bar */
.temple-action-bar {
  margin-top: auto;
  padding-top: clamp(10px, 2.2vw, 14px);
  border-top: 2px solid rgba(0, 0, 0, 0.06);
}

/* Temple Icon Circle */
.temple-icon-circle {
  width: clamp(32px, 6vw, 36px);
  height: clamp(32px, 6vw, 36px);
  background: linear-gradient(135deg, rgba(244, 91, 31, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
  border-radius: 50%;
  color: var(--themeColor);
  font-size: clamp(13px, 2.5vw, 15px);
  transition: all 0.3s ease;
}

.temple-card-ultra:hover .temple-icon-circle {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  color: white;
  transform: rotate(360deg);
}

/* Explore Button Ultra */
.temple-explore-ultra {
  color: var(--themeColor);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.temple-explore-ultra:hover {
  color: var(--secondaryColor);
  gap: 12px !important;
}

/* Arrow Circle - Creative Shape */
.arrow-circle {
  width: clamp(26px, 5vw, 30px);
  height: clamp(26px, 5vw, 30px);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 50% 50% 50% 8%;
  color: white;
  font-size: clamp(11px, 2vw, 12px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 4px 12px rgba(244, 91, 31, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.arrow-circle::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.temple-explore-ultra:hover .arrow-circle {
  transform: translateX(6px) rotate(45deg);
  box-shadow:
    0 6px 20px rgba(244, 91, 31, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.temple-explore-ultra:hover .arrow-circle::before {
  left: 100%;
}


/* ========================================
   TEMPLE STORY SECTION - PLAIN DESIGN
   ======================================== */

.temple-story-plain {
  background: linear-gradient(180deg, #fbfbfb 0%, #fef9f6 100%);
}

/* Story Section */
.story-section-plain {
  position: relative;
  padding-left: clamp(25px, 5vw, 40px);
}

.story-section-plain::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: clamp(6px, 1.5vw, 8px);
  height: clamp(6px, 1.5vw, 8px);
  background: #F45B1F;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(244, 91, 31, 0.15);
  transition: all 0.3s ease;
}

.story-section-plain:hover::before {
  transform: scale(1.5);
  box-shadow: 0 0 0 8px rgba(244, 91, 31, 0.2);
}

/* Main Title */
.story-main-title {
  position: relative;
  display: inline-block;
  padding-bottom: clamp(6px, 1.5vw, 8px);
}

.story-main-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(40px, 10vw, 60px);
  height: clamp(3px, 0.8vw, 4px);
  background: linear-gradient(90deg, #F45B1F 0%, #FF8C42 100%);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.story-section-plain:hover .story-main-title::after {
  width: 100%;
}

/* Sub Title */
.story-sub-title {
  display: inline-block;
  padding-bottom: clamp(6px, 1.5vw, 8px);
}

.story-sub-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(35px, 8vw, 50px);
  height: clamp(2px, 0.6vw, 3px);
  background: linear-gradient(90deg, #F45B1F 0%, transparent 100%);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.story-section-plain:hover .story-sub-title::after {
  width: 80%;
}

/* Story Paragraph */
.story-para {
  text-align: justify;
  padding-left: clamp(15px, 3vw, 20px);
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
}

.story-section-plain:hover .story-para {
  border-left-color: rgba(244, 91, 31, 0.2);
  padding-left: clamp(18px, 4vw, 25px);
}

/* Intro Text */
.story-intro-text {
  padding: 20px clamp(20px, 6vw, 40px);
  background-color: #fef7f4;
  border-radius: 16px;
}

.story-intro-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: clamp(-5px, -2vw, -10px);
  font-size: clamp(35px, 8vw, 60px);
  color: rgba(244, 91, 31, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.story-intro-text::after {
  content: '"';
  position: absolute;
  right: 0;
  bottom: clamp(-20px, -4vw, -30px);
  font-size: clamp(35px, 8vw, 60px);
  color: rgba(244, 91, 31, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

/* ========================================
   TEMPLE IMPORTANCE SECTION - MINIMAL
   ======================================== */

.temple-importance-minimal {
  background: #ffffff;
}

/* Minimal Item with Flex Layout */
.importance-minimal-item {
  align-items: flex-start;
}

/* Number Wrapper */
.importance-number-wrapper {
  top: clamp(2px, 0.5vw, 4px);
}

.importance-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 6vw, 44px);
  height: clamp(36px, 6vw, 44px);
  background: #F45B1F;
  color: #ffffff;
  border-radius: 50%;
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 700;
  animation: pulse-number 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

@keyframes pulse-number {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(244, 91, 31, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 8px rgba(244, 91, 31, 0.1);
  }
}

.importance-minimal-item:hover .importance-number {
  transform: scale(1.1);
  background: linear-gradient(135deg, #F45B1F 0%, #FF8C42 100%);
  box-shadow: 0 0 0 12px rgba(244, 91, 31, 0.15);
}

/* List Styling */
.importance-minimal-list {
  padding-left: 0;
}

.importance-minimal-list span {
  display: block;
  margin-bottom: clamp(4px, 1vw, 6px);
}

.importance-minimal-list span:last-child {
  margin-bottom: 0;
}

/* ========================================
   PUJAS COMPACT SECTION STYLES
   ======================================== */

.pujas-compact-section {
  background: #ffffff;
}

/* Compact Block */
.puja-compact-block {
  position: relative;
  margin-bottom: clamp(16px, 3vw, 24px);
}

/* Compact Title */
.puja-compact-title {
  display: flex;
  align-items: center;
  padding-bottom: clamp(8px, 2vw, 12px);
  border-bottom: 2px solid rgba(244, 91, 31, 0.15);
  margin-bottom: clamp(12px, 2.5vw, 16px);
}

.puja-compact-title i {
  font-size: clamp(18px, 3vw, 20px);
}

/* Compact List */
.puja-compact-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 2vw, 12px);
}

/* Compact Item */
.puja-compact-item {
  display: inline-block;
  padding: clamp(6px, 1.5vw, 8px) clamp(10px, 2vw, 12px);
  background: rgba(244, 91, 31, 0.04);
  border-radius: clamp(4px, 1vw, 6px);
  border: 1px solid rgba(244, 91, 31, 0.1);
  transition: all 0.3s ease;
}

.puja-compact-item:hover {
  background: rgba(244, 91, 31, 0.08);
  border-color: rgba(244, 91, 31, 0.2);
  transform: translateY(-1px);
}

/*  DARSHAN TIMINGS SECTION */

.darshan-timings-section {
  background: linear-gradient(135deg, rgba(244, 91, 31, 0.03) 0%, rgba(255, 152, 0, 0.05) 100%);
}

.timing-cards-redesign {
  background: #ffffff;
  border: 1px solid rgba(244, 91, 31, 0.1);
  border-radius: clamp(14px, 3vw, 18px);
  padding: clamp(24px, 4vw, 32px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.timing-icon-header {
  width: clamp(50px, 10vw, 60px);
  height: clamp(50px, 10vw, 60px);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: clamp(8px, 2vw, 10px);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(244, 91, 31, 0.25);
}

.timing-icon-header i {
  font-size: clamp(20px, 4vw, 24px);
  color: #ffffff;
}

.timing-cards-stack-new {
  height: calc(100% - 80px);
  display: flex;
  flex-direction: column;
}

.timing-card-new {
  background: #f8f9fa;
  border: 1px solid rgba(244, 91, 31, 0.1);
  border-radius: clamp(8px, 2vw, 10px);
  padding: clamp(12px, 2.5vw, 16px);
  transition: all 0.3s ease;
}

.timing-card-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244, 91, 31, 0.1);
  border-color: rgba(244, 91, 31, 0.2);
}

.timing-icon-new {
  width: clamp(35px, 7vw, 40px);
  height: clamp(35px, 7vw, 40px);
  background: rgba(244, 91, 31, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.timing-icon-new i {
  font-size: clamp(14px, 3vw, 16px);
  color: var(--themeColor);
}

.timing-badge-new {
  background: rgba(244, 91, 31, 0.08);
  border-radius: clamp(4px, 1vw, 6px);
  padding: clamp(4px, 1vw, 6px) clamp(6px, 1.5vw, 8px);
  border: 1px solid rgba(244, 91, 31, 0.15);
}

/* Additional Info Sections */
.timing-info-card {
  background: rgba(244, 91, 31, 0.05);
  border: 1px solid rgba(244, 91, 31, 0.1);
  border-radius: clamp(6px, 1.5vw, 8px);
  padding: clamp(12px, 2.5vw, 16px);
}

.timing-info-list {
  list-style: none;
  padding-left: 0;
}

.timing-info-list li {
  position: relative;
  padding-left: 16px;
}

.timing-info-list li::before {
  content: '•';
  color: var(--themeColor);
  position: absolute;
  left: 0;
  top: 0;
}

/* Right Side - Booking Form with Linear Gradient */
.darshan-booking-form-redesign {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border: 1px solid rgba(244, 91, 31, 0.2);
  border-radius: clamp(14px, 3vw, 18px);
  padding: clamp(24px, 4vw, 32px);
  box-shadow: 0 8px 30px rgba(244, 91, 31, 0.25);
}

.darshan-booking-form-redesign::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
}

.booking-icon-linear {
  width: clamp(50px, 10vw, 60px);
  height: clamp(50px, 10vw, 60px);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: clamp(8px, 2vw, 10px);
  flex-shrink: 0;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.booking-icon-linear:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* Simple Form Labels */
.form-label-white {
  color: #ffffff;
  margin-bottom: clamp(6px, 1.2vw, 8px);
}

/* Simple Form Inputs */
.form-input-linear {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: clamp(6px, 1.5vw, 8px);
  padding: clamp(10px, 2vw, 12px) clamp(12px, 2.5vw, 15px);
  color: #333;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input-linear:focus {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
  outline: none;
  color: #333;
}

.form-input-linear::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

/* Date Input Styling */
.form-input-linear[type="date"] {
  color: #333;
}

.form-input-linear[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5);
  cursor: pointer;
}

/* Textarea Styling */
textarea.form-input-linear {
  resize: vertical;
  min-height: clamp(80px, 15vw, 100px);
}

/* Linear Submit Button */
.btn-linear-submit {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: clamp(8px, 2vw, 10px);
  color: #ffffff;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-linear-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-linear-submit:hover::before {
  left: 100%;
}

.btn-linear-submit:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.btn-linear-submit:focus {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 991px) {
  .timing-cards-stack {
    margin-bottom: 40px;
  }

  .timing-card-vertical:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .darshan-booking-form-side {
    padding: 20px;
  }

  .booking-form-header .d-flex {
    flex-direction: column;
    text-align: center;
    gap: 15px !important;
  }
}

/* ========================================
   HOW TO REACH SECTION - SIMPLE STYLES
   ======================================== */

.transport-icon-simple {
  width: 80px;
  height: 80px;
}

.transport-card-simple:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.bg-theme {
  background-color: var(--themeColor);
}

/* Linear Gradient Background */
.bg-linear {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
}

/* Horizontal Layout Cards */
.travel-info-icon {
  width: 40px;
  height: 40px;
}

.point-dot {
  width: 8px;
  height: 8px;
}

.distance-icon {
  width: 30px;
  height: 30px;
}

.travel-info-horizontal:hover,
.distance-grid-card:hover {
  transform: translateY(-3px);
  transition: transform 0.3s ease;
}


/* ============================================
   STUTI & SLOKA SECTION - TIMELINE LAYOUT
   ============================================ */

/* Timeline Line */
.sloka-timeline-line {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  transform: translateX(-50%);
  opacity: 0.3;
}

/* Sloka Box Left */
.sloka-box-left {
  background: white;
  border: 2px solid rgba(244, 91, 31, 0.1);
  transition: all 0.4s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.sloka-box-left:hover {
  border-color: rgba(244, 91, 31, 0.3);
  box-shadow: 0 8px 24px rgba(244, 91, 31, 0.15);
  transform: translateX(-8px);
}

/* Sloka Box Right */
.sloka-box-right {
  background: white;
  border: 2px solid rgba(244, 91, 31, 0.1);
  transition: all 0.4s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.sloka-box-right:hover {
  border-color: rgba(244, 91, 31, 0.3);
  box-shadow: 0 8px 24px rgba(244, 91, 31, 0.15);
  transform: translateX(8px);
}

/* Sloka Badge Circle */
.sloka-badge-circle {
  width: clamp(45px, 8vw, 50px);
  height: clamp(45px, 8vw, 50px);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(244, 91, 31, 0.3);
}

/* Mantra Horizontal Card */
.mantra-horizontal-card {
  background: linear-gradient(135deg, rgba(244, 91, 31, 0.03) 0%, rgba(255, 152, 0, 0.03) 100%);
  border: 2px solid rgba(244, 91, 31, 0.12);
  transition: all 0.3s ease;
}

.mantra-horizontal-card:hover {
  background: linear-gradient(135deg, rgba(244, 91, 31, 0.06) 0%, rgba(255, 152, 0, 0.06) 100%);
  border-color: rgba(244, 91, 31, 0.25);
  transform: translateY(-4px);
}

/* Mantra Icon Box */
.mantra-icon-box {
  width: clamp(60px, 12vw, 70px);
  height: clamp(60px, 12vw, 70px);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  color: white;
  font-size: clamp(24px, 4vw, 28px);
}

/* Info Note Box */
.info-note-box {
  background: linear-gradient(135deg, rgba(244, 91, 31, 0.05) 0%, rgba(255, 152, 0, 0.05) 100%);
  border-left: 4px solid var(--themeColor);
}

/* Info Icon Circle */
.info-icon-circle {
  width: clamp(35px, 7vw, 40px);
  height: clamp(35px, 7vw, 40px);
  background: var(--themeColor);
  color: white;
  font-size: clamp(14px, 2.5vw, 16px);
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .sloka-timeline-line {
    display: none;
  }

  .sloka-box-left:hover,
  .sloka-box-right:hover {
    transform: translateY(-8px);
  }
}

/* Stuti & Sloka */

/* Sloka Cards - Creative Design */
.sloka-card-new {
  background: linear-gradient(135deg, #ff7b4d, #ff9966, #ffaa7f);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 32px rgba(244, 91, 31, 0.25);
}

.sloka-card-new {

  h6,
  p {
    color: rgb(0 0 0 / 51%);
    ;
  }
}

.sloka-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  z-index: 0;
  transition: all 0.4s ease;
}

.sloka-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(244, 91, 31, 0.35);
}

.sloka-card-new:hover::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
}

.sloka-card-new>* {
  position: relative;
  z-index: 1;
}

.sloka-number-badge {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1;
}

/* Mantras Mini Container */
.mantras-mini {
  background: linear-gradient(135deg, rgba(244, 91, 31, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
  border: 1px solid rgba(244, 91, 31, 0.1);
}

.mantra-bg-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(244, 91, 31, 0.05), transparent);
  pointer-events: none;
}

.mantra-item {
  background: #fff;
  border: 1px solid rgba(244, 91, 31, 0.06);
  transition: all 0.3s ease;
  padding: 12px;
}

.mantra-item:hover {
  border-color: rgba(244, 91, 31, 0.12);
  transform: translateX(3px);
}

.mantra-icon-mini {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--themeColor), #ff6b35);
  color: white;
}


/* ===== PUJA HISTORY SECTION ===== */
.puja-history-section {
  background: linear-gradient(135deg, rgba(244, 91, 31, 0.02) 0%, rgba(255, 152, 0, 0.03) 100%);
  padding: clamp(1.6rem, 2rem + 2vw, 2rem) 0;
  min-height: 100vh;
}

.puja-history-header {
  margin-bottom: clamp(2rem, 2rem + 2vw, 3rem);
}

.puja-history-header h1 svg {
  color: var(--themeColor);
  animation: slideRight 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Completed Puja Section */
.puja-history-completed {
  margin-bottom: clamp(2rem, 2rem + 2vw, 3rem);
}

.puja-history-completed h2 {
  margin-bottom: clamp(1.5rem, 1.5rem + 1vw, 2rem);
}

.puja-history-completed h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 2px;
}

/* Pending Puja Section */
.puja-history-pending {
  margin-bottom: clamp(2rem, 2rem + 2vw, 3rem);
}

.puja-history-pending h2 {
  color: var(--textcolor);
  margin-bottom: clamp(1.5rem, 1.5rem + 1vw, 2rem);
  position: relative;
  padding-bottom: 1rem;
}

.puja-history-pending h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ffc107 0%, #ff9800 100%);
  border-radius: 2px;
}

/* Puja History Item */
.puja-history-item {
  background: var(--whiteColor);
  border: 1px solid rgba(244, 91, 31, 0.1);
  border-radius: clamp(12px, 2vw, 16px);
  padding: clamp(1rem, 1rem + 1vw, 1rem);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.puja-history-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(244, 91, 31, 0.15);
  border-color: rgba(244, 91, 31, 0.2);
}

/* Puja Item Image */
.puja-item-image {
  width: 100%;
  height: clamp(120px, 20vw, 140px);
  border-radius: clamp(8px, 1.5vw, 12px);
  background: #f5f5f5;
}

.puja-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.puja-history-item:hover .puja-item-image img {
  transform: scale(1.08);
}

/* Puja Item Date */
.puja-item-date {
  margin-top: clamp(0.75rem, 0.75rem + 0.5vw, 1rem);
  padding-top: clamp(0.75rem, 0.75rem + 0.5vw, 1rem);
  border-top: 1px solid rgba(244, 91, 31, 0.1);
}

.puja-item-date p {
  color: #999;
}

.verify-icon {
  background: linear-gradient(to bottom, #5a8f15, #7bc51f);
  height: 20px;
  width: 20px;
  border-radius: 50px;
}


/* ========================================
   Donation Status Badges
   ======================================== */

.donation-status-badge {
  border: none;
  transition: all 0.3s ease;
}

.donation-status-badge.completed {
  background: rgba(220, 252, 231, 1);
  color: #15803d;
}

.donation-status-badge.pending {
  background: rgba(254, 243, 199, 1);
  color: #ca8a04;
}


/* Update Item Premium - Right Side Image Carousel */
.update-item-premium {
  position: relative;
}

.update-item-image-carousel {
  position: absolute;
  right: 0;
  top: 0;
  width: 200px;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.update-item-image-carousel img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: imageRotate 9s steps(1, end) infinite;
}

.update-item-image-carousel img:nth-child(1) {
  animation-delay: 0s;
}

.update-item-image-carousel img:nth-child(2) {
  animation-delay: 3s;
}

.update-item-image-carousel img:nth-child(3) {
  animation-delay: 6s;
}

@keyframes imageRotate {
  0% {
    opacity: 1;
  }

  33% {
    opacity: 1;
  }

  34% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width:575px) {
  .update-item-image-carousel {
    position: relative;
  }

  .imageSlider-container {
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    overflow: hidden;
    margin: auto;
  }

  .update-item-image-carousel {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .imageSlider-container.mobile-order {
    display: block;
    margin: 15px 0;
  }

  .col-md-3 .update-item-image-carousel {
    display: none;
  }
}