/* ===========================
   ROOT VARIABLES & COLORS
   =========================== */
:root {
  /* Primary Colors */
  --themeColor: #FF8202;
  --primaryColor: #C84600;
  --secondaryColor: #DD9E3B;
  --textColor: #010535;
  --whiteColor: #fff;
  --darkBg: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--textColor);
  background-color: var(--whiteColor);
  overflow-x: hidden;
  line-height: normal !important;
}

/* Disable smooth scroll on mobile to prevent navbar jump */
@media (max-width: 991px) {
  html {
    scroll-behavior: auto;
  }
}

/* ===========================
   CUSTOM SCROLLBAR
   =========================== */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--themeColor);
  border-radius: clamp(6px, 0.8vw, 8px);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--themeColor);
}


/* Font Sizes */

.font-12 {
  font-size: clamp(10px, 1.2vw, 12px);
}

.font-14 {
  font-size: clamp(12px, 1.4vw, 14px);
}

.font-16 {
  font-size: clamp(14px, 1.6vw, 16px);
}

.font-18 {
  font-size: clamp(15px, 1.8vw, 18px);
}

.font-20 {
  font-size: clamp(16px, 2vw, 20px);
}

.font-22 {
  font-size: clamp(18px, 2.2vw, 22px);
}

.font-24 {
  font-size: clamp(20px, 2.4vw, 24px);
}

.font-28 {
  font-size: clamp(20px, 2.8vw, 28px);
}

.font-30 {
  font-size: clamp(20px, 3vw, 30px);
}

.font-32 {
  font-size: clamp(24px, 3.2vw, 32px);
}

.font-40 {
  font-size: clamp(28px, 3.5vw, 40px);
}

.font-48 {
  font-size: clamp(28px, 4.8vw, 48px);
}


/* Font Weights */
.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extrabold {
  font-weight: 800;
}

/* ===========================
   COLORS
   =========================== */
.primaryColor {
  color: var(--primaryColor);
}

.secondaryColor {
  color: var(--secondaryColor);
}

.themeColor {
  color: var(--themeColor);
}

.textColor {
  color: var(--textColor);
}

.textLight {
  color: rgba(255, 255, 255, 0.8);
}

.textDark {
  color: #606060;
}

a {
  text-decoration: none !important;
}

.lh-0 {
  line-height: 0 !important;
}

.line-height-22 {
  line-height: clamp(1.125rem, 1.0809rem + 0.2353vw, 1.375rem) !important;
}

.line-height-18 {
  line-height: 18px !important;
}

.line-height-26 {
  line-height: clamp(1.25rem, 1.1797rem + 0.375vw, 1.625rem) !important;
}

.line-height-28 {
  line-height: 28px;
}

.line-height-40 {
  line-height: 40px;
}

.line-height-48 {
  line-height: 48px;
}

/*  NAVBAR */
.navbar {
  background: var(--whiteColor);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(238, 198, 152, 0.18);
  z-index: 100;
  transition: all 0.3s ease;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 4px 0px;
}

.navbar-logo {
  height: clamp(60px, 5vw, 80px);
  width: auto;
  transition: all 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  transition: all 0.3s ease;
  position: relative;
  color: var(--textColor);
}

.navbar-nav .nav-link:hover {
  color: var(--themeColor);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link.active {
  color: var(--themeColor) !important;
  font-weight: 600;
}

.navbar-toggler-icon {
  background-color: #c8460033;
  border-radius: 4px;
  background-size: 80% !important;
  transition: all 0.3s ease;
  background-repeat: no-repeat;
  background-position: center;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-brand {
  height: clamp(65px, 6vw, 75px);
  width: auto;
  transition: all 0.3s ease;
  display: block;
}

.navbar-toggler-open .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") !important;
}

.navbar-nav .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.navbar-nav .dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.3s ease;
  margin-left: 4px;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.navbar-collapse {
  margin: 10px;
}

.dropdown-menu {
  border-radius: clamp(6px, 0.8vw, 8px);
  box-shadow: 0 8px 24px rgba(1, 5, 53, 0.12);
  padding: 8px 0;
  animation: dropdownSlide 0.3s ease;
  margin-top: 8px;
  min-width: 215px;
  position: absolute !important;
  left: -100% !important;
  border: 1px solid #df9a4a5c;
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu .dropdown-item {
  color: var(--textColor) !important;
  padding: clamp(0.5rem, 0.4779rem + 0.1176vw, 0.625rem) 20px;
  transition: all 0.2s ease;
  font-size: 13px;
  font-weight: 500;
}

.dropdown-menu .dropdown-item:hover {
  background: #fceee173;
  padding-left: 24px;
  color: var(--themeColor) !important;
}


/* Button */
.primary-button {
  gap: 8px;
  outline: none;
  cursor: pointer;
  padding: 12px 32px;
  color: white;
  letter-spacing: 0.3px;
  background: linear-gradient(1deg, #d65600d9, #f5a763, #f571289e, #fbd7b9);
  border: none;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.primary-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: left 0.4s ease;
  z-index: 0;
}


.primary-button span {
  position: relative;
  z-index: 2;
}

.primary-button i {
  position: relative;
  z-index: 2;
}

.pb-ai-sparkle {
  animation: sparkleFloat 1.5s ease-in-out infinite;
}

@keyframes sparkleFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.primary-button:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, #d65600d9, #f5a763, #f571289e, #fbd7b9);
}

.primary-button:hover::before {
  left: 100%;
}

.primary-button:hover::after {
  width: 200px;
  height: 200px;
}

.primary-button:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 130, 2, 0.2);
}


/*  TESTIMONIALS SECTION */
.testimonials-section {
  background: #fafafa;
}

.testimonials-tab-btn {
  background: #f7b06826;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--textColor);
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  border-radius: 10px;
}

.testimonials-tab-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  transition: all 0.3s ease;
}

.testimonials-tab-btn span {
  font-weight: 500;
  transition: all 0.3s ease;
}

.testimonials-tab-btn:hover {
  color: var(--themeColor);
}

.testimonials-tab-btn:hover svg {
  stroke: var(--themeColor);
}

.testimonials-tab-btn.active {
  color: var(--whiteColor);
  border-bottom-color: var(--themeColor);
  font-weight: 600;
  background: linear-gradient(1deg, #f3b687, var(--themeColor), #c846009e, #f8b984);
}

.testimonials-tab-btn.active svg {
  stroke: var(--whiteColor);
  transform: scale(1.05);
}

.testimonials-content {
  display: none;
  animation: fadeIn 0.6s ease-in-out;
}

.testimonials-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feedback-track {
  width: fit-content;
  animation: slideInfinite 15s linear infinite;
  will-change: transform;
}

.video-track {
  width: fit-content;
  animation: slideInfinite 20s linear infinite;
  will-change: transform;
}

@keyframes slideInfinite {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.testimonials-slider:hover .testimonials-track {
  animation-play-state: paused;
}

.video-track,
.feedback-track {
  width: fit-content;
  display: flex;
  gap: 1rem;
}

/* Videos Slider */
@media (max-width: 768px) {
  .testimonials-slider-videos {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .testimonials-slider-videos::-webkit-scrollbar {
    display: none;
  }

  .testimonials-slider-videos .video-track {
    width: auto !important;
    display: flex !important;
    flex-wrap: nowrap !important;
  }

  .testimonials-slider-videos .testimonial-item {
    flex: 0 0 auto;
    width: 280px;
    margin-right: 16px;
  }

  .testimonials-slider-videos .testimonial-item:last-child {
    margin-right: 0;
  }
}

/* Feedback Slider */


.testimonial-item {
  flex-shrink: 0;
  width: clamp(280px, 30vw, 340px);
  cursor: pointer;
}

.testimonial-video {
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 130, 2, 0.15);
  overflow: hidden;
  background: var(--whiteColor);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-video:hover {
  transform: translateY(-12px);
  box-shadow: 0 10px 20px rgba(255, 130, 2, 0.15), 0 0 25px rgba(255, 130, 2, 0.08);
  border-color: rgba(255, 130, 2, 0.4);
}

.video-container {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 130, 2, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.testimonial-video:hover .video-container::before {
  opacity: 1;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  transition: filter 0.3s ease;
  position: relative;
  z-index: 0;
  pointer-events: auto;
}

.testimonial-video:hover .video-container iframe {
  filter: brightness(1.05);
}

.video-info {
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 250, 250, 0.95) 100%);
  border-top: 1px solid rgba(255, 130, 2, 0.1);
}

.video-info h4 {
  transition: all 0.3s ease;
  color: var(--textColor);
  font-size: 15px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.video-info p {
  transition: all 0.3s ease;
  color: #606060;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

.testimonial-video:hover .video-info h4 {
  color: var(--themeColor);
  transform: translateX(2px);
}

.testimonial-video:hover .video-info p {
  color: var(--themeColor);
  opacity: 0.9;
}

/* Feedback Card */
.feedback-card {
  background: var(--whiteColor);
  border: 1px solid rgba(255, 130, 2, 0.15);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  padding: 24px;
}


@keyframes hoverGlow {
  0% {
    transform: translate(-10px, -10px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.feedback-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 10px 20px rgba(255, 130, 2, 0.18), 0 0 30px rgba(255, 130, 2, 0.1);
  border-color: rgba(255, 130, 2, 0.4);

}

.feedback-card:hover::before {
  opacity: 1;
}

.feedback-header {
  z-index: 2;
}

.feedback-avatar {
  flex-shrink: 0;
}

.avatar-circle {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--themeColor), var(--primaryColor));
  box-shadow: 0 4px 12px rgba(255, 130, 2, 0.2);
  transition: all 0.4s ease;
  color: white;
}

.avatar-circle::before {
  display: none;
}

.feedback-card:hover .avatar-circle {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 130, 2, 0.3);
}

.star-icon {
  width: 16px;
  height: 16px;
  color: #FFD700;
  fill: #FFD700;
  filter: drop-shadow(0 1px 2px rgba(255, 215, 0, 0.3));
  transition: transform 0.3s ease;
}

.feedback-card:hover .star-icon {
  transform: scale(1.1) rotate(8deg);
}

.feedback-card>p {
  color: #404040;
  margin-top: 8px;
  flex-grow: 1;
  transition: color 0.3s ease;
  z-index: 2;
  font-style: italic;
  opacity: 0.9;
}

.feedback-card:hover>p {
  color: var(--textColor);
  opacity: 1;
}

.feedback-footer {
  border-top: 1px solid rgba(255, 130, 2, 0.1);
  padding-top: 16px;
  position: relative;
  z-index: 2;
}

.feedback-footer h4 {
  font-size: 15px;
  color: var(--textColor);
  margin-bottom: 4px;
  transition: color 0.3s ease;
  font-weight: 600;
}

.feedback-footer p {
  font-size: 12px;
  color: #808080;
  margin: 0;
  transition: color 0.3s ease;
}

.feedback-card:hover .feedback-footer h4 {
  color: var(--themeColor);
}

.feedback-card:hover .feedback-footer p {
  color: var(--themeColor);
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-item {
    width: 280px;
  }

}


/* ===========================
   IMAGE GALLERY SECTION
   =========================== */
.gallery-item {
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover img {
  transform: scale(1.12) rotate(1deg);
  filter: brightness(1.08);
}

.gallery-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  transition: all 0.3s ease;
  opacity: 0.8;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  background: linear-gradient(180deg, rgba(255, 130, 2, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.gallery-overlay span {
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay span {
  color: var(--themeColor);
  text-shadow: 0 2px 8px rgba(255, 130, 2, 0.3);
}

/* ===========================
   FAQ SECTION - MINIMAL
   =========================== */

/* FAQ Section Header Decoration */

section .section-header::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--themeColor), var(--primaryColor));
  border-radius: 50%;
  opacity: 0.15;
  animation: pulse 2s ease-in-out infinite;
}

section .section-header::after {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border: 2px solid var(--themeColor);
  border-radius: 50%;
  opacity: 0.1;
  animation: pulse-reverse 2.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.15;
  }

  50% {
    transform: translateX(-50%) scale(1.2);
    opacity: 0.08;
  }
}

@keyframes pulse-reverse {

  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.1;
  }

  50% {
    transform: translateX(-50%) scale(0.8);
    opacity: 0.05;
  }
}


.section-header-title::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--themeColor), var(--primaryColor), transparent);
  border-radius: 2px;
}

.faq-item {
  border: 1px solid rgba(255, 130, 2, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--themeColor);
  box-shadow: 0 4px 12px rgba(255, 130, 2, 0.1);
}

.faq-trigger {
  width: 100%;
  border: none;
  background: var(--whiteColor);
  cursor: pointer;
  padding: 18px 20px;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-item.open .faq-trigger {
  background: rgba(255, 130, 2, 0.06);
}

.faq-trigger:hover .faq-q {
  color: var(--themeColor);
}

.faq-item.open .faq-q {
  color: var(--themeColor);
  font-weight: 600;
}

.faq-icon {
  color: var(--themeColor);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 20px;
  height: 20px;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-body-inner {
  padding: 10px 20px 18px 20px;
  color: #606060;
}

.faq-body-inner strong {
  color: var(--themeColor);
  font-weight: 600;
}

/* ===========================
   FINAL CTA SECTION
   =========================== */
#cta-decorate {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
}

#cta-decorate::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: clamp(250px, 30vw, 300px);
  height: clamp(250px, 30vw, 300px);
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  border-radius: 50%;
  animation: float-decoration 6s ease-in-out infinite;
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.1);
}

#cta-decorate::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: clamp(130px, 20vw, 180px);
  height: clamp(130px, 20vw, 180px);
  background:
    conic-gradient(from 0deg, rgba(255, 255, 255, 0.15) 0deg, rgba(255, 255, 255, 0.05) 90deg, rgba(255, 255, 255, 0.15) 180deg, rgba(255, 255, 255, 0.05) 270deg, rgba(255, 255, 255, 0.15) 360deg),
    radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-decoration 8s ease-in-out infinite reverse;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes float-decoration {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

.cta-wrapper h2 {
  letter-spacing: -0.5px;
}

.cta-wrapper h2 em {
  font-style: normal;
}


/* ===========================
   FOOTER SECTION
   =========================== */
.footer-section {
  background: #000000;
  padding: clamp(3rem, 7vw, 3rem) 0 clamp(2rem, 3vw, 2rem);
  border-top: 3px solid var(--themeColor);
}

.footer-row {
  justify-content: space-between;
}

.footer-logo {
  height: clamp(70px, 6vw, 100px);
  width: auto;
  transition: all 0.3s ease;
  display: block;
}

.footer-logo:hover {
  transform: scale(1.08);
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.15), rgba(200, 70, 0, 0.1));
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer-contact-icon:hover {
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.25), rgba(200, 70, 0, 0.2));
  transform: translateY(-2px);
}

.footer-contact-icon i {
  color: var(--themeColor);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-contact-icon:hover i {
  transform: scale(1.1);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  color: var(--whiteColor);
  opacity: 0.8;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--themeColor);
  opacity: 1;
}

.footer-title {
  color: var(--primaryColor);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
  display: inline-block;
  letter-spacing: 0.5px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--secondaryColor));
  transition: all 0.3s ease;
}

.footer-social {
  display: flex;
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
  margin-top: clamp(1.5rem, 2.5vw, 2rem);
  flex-wrap: wrap;
}

.footer-social-btn {
  width: clamp(40px, 5vw, 48px);
  height: clamp(40px, 5vw, 48px);
  background: linear-gradient(170deg, var(--themeColor) 0%, var(--primaryColor));
  border-radius: 10px;
  color: var(--whiteColor);
  transition: all 0.3s ease;
  border: 2px solid var(--themeColor);
}

.footer-social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(255, 130, 2, 0.3);
  background: linear-gradient(170deg, var(--primaryColor) 0%, var(--themeColor));
}

.footer-social-btn img {
  width: clamp(18px, 2vw, 20px);
  height: clamp(18px, 2vw, 20px);
}

.footer-contact-label {
  color: var(--primaryColor);
  font-weight: 600;
}

.footer-contact-value {
  color: var(--whiteColor);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  opacity: 0.85;
}

.footer-contact-value:hover {
  color: var(--themeColor);
  opacity: 1;
}

.footer-divider {
  border-top: 1px solid rgba(255, 130, 2, 0.2);
}

.footer-seo-links {
  background: transparent;
  padding: 20px 0;
}

.footer-seo-links h5 {
  color: var(--primaryColor);
  margin-bottom: 12px;
}

.footer-seo-link {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 130, 2, 0.08);
  border: 1px solid rgba(255, 130, 2, 0.2);
  border-radius: 20px;
  color: var(--whiteColor);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.footer-seo-link:hover {
  background: var(--themeColor);
  border-color: var(--themeColor);
  color: var(--whiteColor);
  opacity: 1;
  transform: translateY(-2px);
}


.footer-bottom-links {
  display: flex;
  gap: clamp(1.5rem, 2.5vw, 2rem);
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--whiteColor);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.footer-bottom-links a:hover {
  color: var(--themeColor);
  opacity: 1;
}

/* ===========================
   BLOG DETAILS PAGE
   =========================== */
.blog-hero {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.blog-toc {
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 1.3rem;
}

.blog-quote {
  padding: 1.3rem;
  border-left: 5px solid var(--themeColor);
  border-radius: 8px;
  background-color: #f5f5f5;
}

.blog-list {
  list-style: none;
  padding: 0;
}

.blog-list li {
  margin-bottom: 1rem;
  padding-left: 0;
}

.blog-list strong {
  color: var(--textColor);
}

.blog-share {
  background-color: #f5f5f5;
  border-radius: 12px;
}

.share-btn {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--themeColor), var(--primaryColor));
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.share-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(255, 130, 2, 0.2);
}

.share-whatsapp {
  background: linear-gradient(135deg, #25D366, #20BA5D);
}

.share-whatsapp:hover {
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.3);
}

.share-facebook {
  background: linear-gradient(135deg, #1877F2, #0A66C2);
}

.share-facebook:hover {
  box-shadow: 0 8px 16px rgba(24, 119, 242, 0.3);
}

.share-twitter {
  background: linear-gradient(135deg, #000000, #545454);
}

.share-twitter:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.share-linkedin {
  background: linear-gradient(135deg, #0A66C2, #004182);
}

.share-linkedin:hover {
  box-shadow: 0 8px 16px rgba(10, 102, 194, 0.3);
}

.benefit-item {
  background-color: #f5f5f5;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  box-shadow: 0 4px 12px rgba(255, 130, 2, 0.15);
  transform: translateY(-4px);
}

.ritual-steps {
  padding: 0;
}

.step-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.step-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-item .badge {
  background: linear-gradient(135deg, var(--themeColor), var(--primaryColor));
  color: white;
  margin-right: 0.5rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.875rem;
}

.related-article {
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.related-article:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--themeColor);
}

.cta-box {
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.1), rgba(200, 70, 0, 0.05));
  border: 1px solid rgba(255, 130, 2, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
}

.quick-facts {
  background-color: #f5f5f5;
  padding: 1.5rem;
  border-radius: 12px;
}

.quick-facts li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #d0d0d0;
}

.quick-facts li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.related-services {
  background-color: #f5f5f5;
  padding: 1.5rem;
  border-radius: 12px;
}

/* ===========================
   BENEFIT CARDS
   =========================== */
.benefit-card {
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 130, 2, 0.1);
  background: var(--whiteColor);
}

.benefit-image {
  width: 100%;
  height: clamp(9.375rem, 8.5547rem + 4.375vw, 13.75rem);
  position: relative;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}

.benefit-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(255, 130, 2, 0.15);
  border-color: rgba(255, 130, 2, 0.25);
}

.benefit-card:hover .benefit-image img {
  transform: scale(1.08) rotate(1deg);
  filter: brightness(1.05);
}

.benefit-card h3 {
  transition: color 0.3s ease;
}

.benefit-card:hover h3 {
  color: var(--themeColor);
}


/* ===========================
   VERTICAL STEPS SECTION
   =========================== */
.steps-container {
  padding-left: 12px;
}

.step-marker {
  width: clamp(2.25rem, 2.1094rem + 0.75vw, 3rem);
  height: clamp(2.25rem, 2.1094rem + 0.75vw, 3rem);
  background: linear-gradient(135deg, var(--themeColor), var(--primaryColor)) !important;
  color: white;
  box-shadow: 0 4px 12px rgba(255, 130, 2, 0.25);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  margin-right: 20px;
}

.step-marker::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--themeColor);
  border-radius: 50%;
  opacity: 0.4;
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    opacity: 0.2;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.step-marker span {
  color: white !important;
  position: relative;
  z-index: 1;
}

.step-item:hover .step-marker {
  transform: scale(1.12);
  box-shadow: 0 8px 20px rgba(255, 130, 2, 0.4);
}

.step-item:hover .step-marker::before {
  animation: ringPulseHover 0.6s ease-in-out;
}

@keyframes ringPulseHover {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.step-content h3 {
  transition: color 0.3s ease;
}

.step-item:hover .step-content h3 {
  color: var(--themeColor);
}


/* ===========================
   CTA BUTTONS
   =========================== */
.cta-btn-primary {
  padding: 12px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #f8f8f8;
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: #f8f8f8;
}

.cta-btn-secondary {
  padding: 12px 28px;
  background: transparent;
  border: 2px solid white;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}


/* ===========================
   WHY CHOOSE US CARDS
   =========================== */
.choose-card {
  background: white;
  border: 1px solid rgba(255, 130, 2, 0.12) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--themeColor), var(--primaryColor));
  box-shadow: 0 4px 12px rgba(255, 130, 2, 0.25);
  transition: all 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 5px 2px rgb(255 130 2 / 68%);
  border-color: rgba(255, 130, 2, 0.25);
}

.choose-card:hover .card-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(255, 130, 2, 0.35);
}

.choose-card h3 {
  transition: color 0.3s ease;
}

.choose-card:hover h3 {
  color: var(--themeColor);
}


/* ===========================
   SERVICE CARDS REDESIGN
   =========================== */
.service-card {
  background: white;
  border: 1px solid rgba(255, 130, 2, 0.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(255, 130, 2, 0.15);
  border-color: rgba(255, 130, 2, 0.25);
}

.service-card-image {
  height: 220px;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-card-image img {
  transform: scale(1.1);
}

.service-card-overlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.service-card:hover .service-card-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.4);
}

.service-read-more {
  color: var(--themeColor);
  transition: all 0.3s ease;
}

.service-read-more:hover {
  transform: translateX(4px);
  color: var(--primaryColor);
}

.service-read-more svg {
  transition: transform 0.3s ease;
}

.service-read-more:hover svg {
  transform: translateX(4px);
}


/* ===========================
   ABOUT PANDIT JI SECTION
   =========================== */

.about-section {
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.02), rgba(200, 70, 0, 0.02));
}

.about-img-card {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 250, 245, 0.8) 100%);
  padding: 24px;
  border-radius: 20px;
  border: 2px solid rgba(255, 130, 2, 0.1);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-img-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgb(255 130 2 / 34%) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.about-img-card:hover {
  box-shadow: 0 6px 10px rgba(255, 130, 2, 0.22);
  border-color: rgba(255, 130, 2, 0.2);
  transform: translateY(-8px);
}

.about-img-card:hover::before {
  top: -50px;
  right: -50px;
  background: radial-gradient(circle, rgba(255, 130, 2, 0.1) 0%, transparent 70%);
}

.card-decoration {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 1;
}

.decoration-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse-decoration 2.5s ease-in-out infinite;
}

.decoration-dot-1 {
  background: var(--themeColor);
  animation-delay: 0s;
}

.decoration-dot-2 {
  background: var(--secondaryColor);
  animation-delay: 0.3s;
}

.decoration-dot-3 {
  background: var(--primaryColor);
  animation-delay: 0.6s;
}

@keyframes pulse-decoration {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

.about-img-container {
  height: 370px;
  border: 2px solid rgba(255, 130, 2, 0.1);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

.about-img-container img {
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-img-container:hover img {
  transform: scale(1.08);
  filter: brightness(1.06) contrast(1.05);
}

.pandit-info {
  padding-top: 16px;
  z-index: 2;
  border-top: 1px solid rgba(255, 130, 2, 0.1);
  margin-top: 16px;
}

.pandit-info h3 {
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.about-img-card:hover .pandit-info h3 {
  color: var(--primaryColor);
  transform: scale(1.05);
}

.pandit-info p {
  font-style: italic;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.about-img-card:hover .pandit-info p {
  color: var(--themeColor);
  opacity: 1;
}

.badge-item {
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.15), rgba(200, 70, 0, 0.12));
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 130, 2, 0.2);
  transition: all 0.3s ease;
}

.about-img-card:hover .badge-item {
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.25), rgba(200, 70, 0, 0.2));
  border-color: rgba(255, 130, 2, 0.35);
  transform: translateY(-2px);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--themeColor), var(--primaryColor));
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

.detail-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.15), rgba(200, 70, 0, 0.12));
  color: var(--themeColor);
  box-shadow: 0 2px 8px rgba(255, 130, 2, 0.1);
  transition: all 0.3s ease;
}

.detail-item-hover {
  transition: transform 0.3s ease;
}

.detail-item-hover:hover {
  transform: translateX(4px);
}

.detail-item-hover:hover .detail-icon {
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.25), rgba(200, 70, 0, 0.2));
  transform: scale(1.1) rotate(-5deg);
  color: var(--primaryColor);
}

/* Hero Section */
.hero-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 1;
}

.hero-section {
  margin-top: 80px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 350px;
}

.hero-badge-container {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: clamp(0.5rem, 0.4531rem + 0.25vw, 0.75rem) clamp(1.25rem, 1.2031rem + 0.25vw, 1.5rem);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  animation: slideDown 0.8s ease-out;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--themeColor);
  border-radius: 50%;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

.hero-badge-text {
  letter-spacing: 0.5px;
}

.hero-heading-wrapper {
  perspective: 1000px;
}

.hero-heading {
  line-height: 1.4;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.hero-heading-highlight {
  display: inline-block;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s both;
  margin-left: 4px;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-description {
  color: rgba(255, 255, 255, 0.95);
  margin: 30px auto;
  max-width: 600px;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-float {
  position: absolute;
  font-size: 3rem;
  animation: float-element 6s ease-in-out infinite;
}

.hero-float-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.hero-float-2 {
  top: 20%;
  right: 8%;
  animation-delay: 2s;
}

.hero-float-3 {
  bottom: 15%;
  left: 8%;
  animation-delay: 4s;
}

.hero-float-4 {
  bottom: 10%;
  right: 5%;
  animation-delay: 1s;
}

@keyframes float-element {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* ===========================
   FOOTER CONTACT ICONS
   =========================== */
.footer-contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.2), rgba(200, 70, 0, 0.15));
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 130, 2, 0.1);
}

.footer-contact-icon:hover {
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.35), rgba(200, 70, 0, 0.25));
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 130, 2, 0.2);
  border-color: rgba(255, 130, 2, 0.25);
}

.footer-contact-icon i {
  color: var(--themeColor);
  transition: all 0.3s ease;
  display: inline-flex;
}

.footer-contact-icon:hover i {
  transform: scale(1.15);
}

/* About page css */

/* Counter Cards Styling */
.counter-card {
  background: var(--whiteColor);
  border: 2px solid rgba(255, 130, 2, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.counter-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(255, 130, 2, 0.15);
  border-color: rgba(255, 130, 2, 0.25);
}

/* Mission & Vision Cards */
.mission-vision-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 130, 2, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mission-vision-card .card-blur-bg {
  background: radial-gradient(circle at 20% 50%, rgba(255, 130, 2, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 130, 2, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.mission-vision-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 130, 2, 0.25);
  box-shadow: 0 16px 32px rgba(255, 130, 2, 0.15);
}

.mission-vision-card h3 {
  transition: color 0.3s ease;
}

.mission-vision-card:hover h3 {
  color: var(--themeColor);
}

.z-2 {
  position: relative;
  z-index: 2;
}

.backdrop-blur {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Mission & Vision Card Background Patterns */
.mission-vision-card .card-blur-bg {
  background: radial-gradient(circle at 20% 30%, rgba(255, 130, 2, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(200, 70, 0, 0.1) 0%, transparent 40%),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 130, 2, 0.03) 10px, rgba(255, 130, 2, 0.03) 20px),
    repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(200, 70, 0, 0.02) 10px, rgba(200, 70, 0, 0.02) 20px);
  z-index: 0;
}

/* Why Choose Us Section */
.why-us-feature-card {
  background: #ffffff;
  border: 1px solid rgb(255 130 2 / 20%);
  box-shadow: 0 2px 8px rgb(0 0 0 / 5%);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-us-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(255, 130, 2, 0.12);
  border-color: rgba(255, 130, 2, 0.2);
}

.why-us-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.1), rgba(200, 70, 0, 0.08));
  border: 2px solid rgba(255, 130, 2, 0.15);
  color: var(--themeColor);
  transition: all 0.4s ease;
}

.why-us-feature-card:hover .why-us-icon {
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.2), rgba(200, 70, 0, 0.12));
  border-color: rgba(255, 130, 2, 0.3);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(255, 130, 2, 0.15);
}

.why-us-feature-card h3 {
  transition: color 0.3s ease;
}

.why-us-feature-card:hover h3 {
  color: var(--themeColor);
}


/* Spiritual Journey Timeline - Simple List */

.journey-list-item {
  transition: all 0.3s ease;
  padding: clamp(12px, 1.5vw, 16px);
  border-radius: 8px;
  background: linear-gradient(90deg, #f6f6f6, #ff82021c, #c8460029, #f4ceb9);
}

.journey-list-item:hover {

  padding-left: clamp(16px, 2vw, 24px);
}

.journey-item-number {
  width: clamp(40px, 6vw, 56px);
  height: clamp(40px, 6vw, 56px);
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.1), rgba(200, 70, 0, 0.08));
  border: 2px solid rgba(255, 130, 2, 0.15);
  transition: all 0.3s ease;
  z-index: 2;
}

.journey-list-item:hover .journey-item-number {
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.2), rgba(200, 70, 0, 0.12));
  border-color: rgba(255, 130, 2, 0.3);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 130, 2, 0.15);
}

.journey-list-item h4 {
  transition: color 0.3s ease;
}

.journey-list-item:hover h4 {
  color: var(--themeColor);
}

/* Daily Values - Horizontal Line Layout */

.values-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--themeColor), rgba(255, 130, 2, .15));
  transform: translateX(-50%);
}

.timeline-dot {
  width: 75px;
  height: 75px;
  background: #fff;
  color: var(--themeColor);
  border: 2px solid rgba(255, 130, 2, .2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  transition: .35s;
  z-index: 2;
}

.timeline-dot:hover {
  transform: scale(1.12);
  background: var(--themeColor);
  color: #fff;
  box-shadow: 0 15px 35px rgba(255, 130, 2, .35);
}

.value-list {
  gap: 35px;
}

.value-box {
  gap: clamp(1.25rem, 1.1328rem + 0.625vw, 1.875rem);
}

.value-icon {
  width: clamp(3.75rem, 3.3984rem + 1.875vw, 5.625rem);
  height: clamp(3.75rem, 3.3984rem + 1.875vw, 5.625rem);
  background: rgba(255, 130, 2, .08);
  flex-shrink: 0;
  transition: .35s;
}

.value-icon img {
  width: 42px;
}

.value-box:hover .value-icon {
  transform: scale(1.08);
  background: var(--themeColor);
}

.value-box:hover .value-icon img {
  filter: brightness(0) invert(1);
}

.value-content {
  position: relative;
  flex: 1;
}

.value-content::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  width: 3px;
  height: 45px;
  background: var(--themeColor);
  transform: translateY(-50%);
}

.flex-lg-row-reverse .value-content::before {
  right: -15px;
  left: auto;
}

.value-content h4 {
  margin-bottom: 8px;
}

.value-content p {
  margin: 0;
  color: #666;
  line-height: 1.8;
}

@media(max-width:991px) {

  .value-box,
  .flex-lg-row-reverse {
    flex-direction: column !important;
    text-align: center;
  }

  .value-content {
    text-align: center !important;
  }

  .value-content::before {
    display: none;
  }
}

/* Gaya Shradh Tarpan Page css */

/* ===========================
   GAYA SHRADH INTRO SECTION
   =========================== */
.intro-gaya {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.intro-image {
  height: 350px;
}

.intro-title .themeColor {
  color: var(--themeColor);
}

.intro-items {
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-image img {
  border-radius: clamp(8px, 1vw, 12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.intro-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 130, 2, 0.15);
}

/* Why Choose Gaya? */
.benefit-card {
  background: var(--whiteColor);
  border: 1px solid rgba(200, 70, 0, .12);
  border-radius: 14px;
  padding: 30px 26px;
  transition: .35s ease;
  height: 100%;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primaryColor), var(--themeColor));
  transform: scaleX(0);
  transition: .35s;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: clamp(4.0625rem, 3.957rem + 0.5625vw, 4.625rem);
  height: clamp(4.0625rem, 3.957rem + 0.5625vw, 4.625rem);
  background: linear-gradient(135deg, var(--primaryColor), var(--themeColor));
  color: #fff;
  box-shadow: 0 10px 30px rgba(200, 70, 0, .25);
}

.benefit-card h5 {
  margin-bottom: 12px;
}

/* Benefits css */
.benefit-list-card {
  background: var(--whiteColor);
  border: 1px solid rgba(200, 70, 0, .12);
  border-radius: 12px;
  padding: 22px;
  transition: .35s ease;
  height: 100%;
}

.benefit-list-card:hover {
  transform: translateY(-6px);
  border-color: var(--themeColor);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.benefit-list-icon {
  width: clamp(3.625rem, 3.543rem + 0.4375vw, 4.0625rem);
  height: clamp(3.625rem, 3.543rem + 0.4375vw, 4.0625rem);
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.15), rgba(200, 70, 0, 0.12));
  box-shadow: 0 2px 8px rgba(255, 130, 2, 0.1);
  flex-shrink: 0;
}

/* Ritual Process css */
.process-line {
  position: absolute;
  top: 62px;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, var(--primaryColor), var(--themeColor));
  z-index: 0;
}

.process-card {
  border: 1px solid rgba(200, 70, 0, .12);
  border-radius: 12px;
  padding: 35px 14px 25px;
  transition: .35s;
  z-index: 2;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: #ffd9c5;
  color: #d85801;
  border: 3px solid #fff;
}

.process-icon {
  width: clamp(3.125rem, 2.8906rem + 1.25vw, 4.375rem);
  height: clamp(3.125rem, 2.8906rem + 1.25vw, 4.375rem);
  margin: auto;
  background: linear-gradient(0deg, var(--primaryColor), var(--themeColor));
  color: #fff;
  box-shadow: 0 10px 25px rgba(200, 70, 0, .25);
}

@media(max-width:991px) {

  .process-line {
    display: none;
  }
}

/* Ritual Process css */
.includes-card {
  border: 1px solid rgba(200, 70, 0, .12);
  border-radius: 16px;
  padding: clamp(1.5rem, 1.4297rem + 0.375vw, 1.875rem);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
  transition: .35s;
}

.includes-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.include-item {
  gap: clamp(0.875rem, 0.8281rem + 0.25vw, 1.125rem);
  padding: clamp(1rem, 0.9766rem + 0.125vw, 1.125rem) 0;
  border-bottom: 1px dashed rgba(0, 0, 0, .1);
}

.include-icon {
  width: clamp(2.625rem, 2.5547rem + 0.375vw, 3rem);
  height: clamp(2.625rem, 2.5547rem + 0.375vw, 3rem);
  background: linear-gradient(135deg, var(--primaryColor), var(--themeColor));
  color: #fff;
  box-shadow: 0 8px 20px rgba(200, 70, 0, .2);
}

/* Why Choose Us css */
.choose-row {
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  transition: .3s;
}

.choose-row:hover {
  padding-left: 15px;
}

.choose-no {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.15), rgba(200, 70, 0, 0.12));
  color: var(--themeColor);
  flex-shrink: 0;
  border: 2px solid #ff820212;
}

.choose-row h5 {
  flex: 1;
}

.choose-row i {
  color: var(--primaryColor);
  font-size: 22px;
}

/* Sacred Places Covered css */
.place-item {
  gap: 18px;
  padding: 12px;
  transition: .3s;
  box-shadow: 0px 0px 4px #cdcdcd;
  border: 1px solid transparent;
}

.place-item:hover {
  border-color: var(--themeColor);
  transform: translateY(6px);
}

.place-item-img {
  width: 100%;
  height: clamp(140px, 20vw, 240px);
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
  flex-shrink: 0;
}

.place-number {
  transition: all 0.4s ease;
}

.place-item:hover .place-item-img {
  transform: scale(1.02);
  filter: brightness(1.05);
}

.place-item:hover .place-number {
  transform: scale(1.1);
  color: var(--primaryColor);
}

.place-item h5 {
  transition: all 0.4s ease;
  letter-spacing: 0.5px;
}

.place-item:hover h5 {
  color: var(--themeColor);
}


/* ===========================
   BLOG SECTION
   =========================== */
.blog-card {
  border: 1px solid rgba(255, 130, 2, 0.15);
  border-radius: 16px;
  background: var(--whiteColor);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 32px rgba(255, 130, 2, 0.15);
  border-color: rgba(255, 130, 2, 0.3);
}

.blog-image {
  height: 240px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

.blog-category {
  z-index: 2;
}

.badge.bg-themeColor {
  background-color: var(--themeColor) !important;
  color: white;
  box-shadow: 0 4px 12px rgba(255, 130, 2, 0.25);
}

.blog-meta {
  font-size: 12px;
  color: #606060;
}

.blog-meta i {
  color: var(--themeColor);
  margin-right: 4px;
}

.blog-card:hover .blog-content h3 {
  color: var(--themeColor);
}

/* ===========================
   RELATED SERVICES SECTION
   =========================== */
.service-item-card {
  height: 280px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-item-image {
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-item-overlay {
  height: 140px;
  background: linear-gradient(180deg, rgb(0 0 0 / 2%) 0%, rgb(0 0 0 / 88%) 100%);
  transition: all 0.3s ease;
  z-index: 1;
}

.service-item-card:hover .service-item-overlay {
  background: linear-gradient(180deg, rgba(255, 130, 2, 0.05) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.service-item-content {
  z-index: 2;
  transition: all 0.3s ease;
}

.service-item-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(255, 130, 2, 0.15);
}

.service-item-card:hover .service-item-image {
  transform: scale(1.08);
}

.service-item-content h3 {
  transition: color 0.3s ease;
}

.service-item-card:hover .service-item-content h3 {
  color: var(--themeColor);
}

.service-item-content a {
  transition: all 0.3s ease;
}

.service-item-card:hover .service-item-content a {
  color: var(--themeColor) !important;
}

.service-item-card:hover .service-item-content a svg {
  transform: translateX(2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-item {
    flex-direction: column;
    text-align: center;
  }

  .icon-circle {
    margin: 0 auto;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}

/*  BLOG CARDS - READ MORE BUTTON */
.blog-content {
  flex-grow: 1;
}

.blog-content a {
  margin-top: auto;
}

.breadcrumb-custom {
  background: transparent;
}

.breadcrumb-custom .breadcrumb-item a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-custom .breadcrumb-item a:hover {
  color: var(--themeColor);
  text-decoration: underline;
}

.breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

.blog-details {
  background: var(--whiteColor);
}

.blog-details figure {
  margin: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Table of Contents */
.blog-toc {
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.05), rgba(200, 70, 0, 0.02));
  border-left: 4px solid var(--themeColor);
}

.blog-toc a {
  transition: all 0.3s ease;
}

.blog-toc a:hover {
  padding-left: 4px;
}

.blog-quote {
  font-style: italic;
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.08), rgba(200, 70, 0, 0.03)) !important;
  transition: all 0.3s ease;
}

.blog-quote:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(255, 130, 2, 0.1);
}

.blog-list li {
  padding-left: 24px;
  position: relative;
  list-style: none;
  font-size: clamp(14px, 1.6vw, 16px);
}

.blog-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--themeColor);
  font-weight: bold;
  font-size: 18px;
}

.benefit-item {
  border-left: 3px solid var(--themeColor);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(4px);
  background-color: rgba(255, 130, 2, 0.08) !important;
}

.benefit-item i {
  color: var(--themeColor);
  margin-right: 4px;
}

.ritual-steps .step-item {
  transition: all 0.3s ease;
}

.ritual-steps .step-item:hover {
  padding-left: 12px;
}

.ritual-steps .badge {
  min-width: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Share Buttons */
.blog-share {
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.08), rgba(200, 70, 0, 0.03)) !important;
}

.share-btn {
  width: 44px;
  height: 44px;
  background: white;
  color: var(--textColor);
  border: 2px solid rgba(255, 130, 2, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.share-btn:hover {
  border-color: var(--themeColor);
  color: var(--themeColor);
  transform: translateY(-2px);
}

.share-whatsapp:hover {
  background: #25D366;
  color: white;
  border-color: #25D366;
}

.share-facebook:hover {
  background: #1877F2;
  color: white;
  border-color: #1877F2;
}

.share-twitter:hover {
  background: #000000;
  color: white;
  border-color: #000000;
}

.share-linkedin:hover {
  background: #0A66C2;
  color: white;
  border-color: #0A66C2;
}

.related-articles {
  padding-top: 30px;
  border-top: 2px solid rgba(255, 130, 2, 0.15);
}

.related-article {
  transition: all 0.3s ease;
  cursor: pointer;
}

.related-article:hover {
  border-color: var(--themeColor) !important;
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(255, 130, 2, 0.1);
}

.related-article h4 {
  transition: color 0.3s ease;
}

.related-article:hover h4 {
  color: var(--themeColor);
}

.blog-sidebar {
  position: sticky;
  top: 120px;
  transition: all 0.3s ease;
}

.cta-box:hover {
  box-shadow: 0 8px 20px rgba(255, 130, 2, 0.15);
  border-color: rgba(255, 130, 2, 0.4);
}

.quick-facts strong {
  color: var(--themeColor);
}

.related-services a {
  transition: all 0.3s ease;
}

.related-services a:hover {
  padding-left: 4px;
  color: var(--primaryColor);
}

.hover-link {
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 991px) {

  .cta-box,
  .quick-facts,
  .related-services {
    position: static;
    top: auto;
  }
}

/* BOOK NOW MODAL */
.modal.fade {
  transition: opacity 0.3s ease;
}

.modal-content.book-now-modal {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--whiteColor) 0%, #fafafa 100%);
}

.modal-content.book-now-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--themeColor), var(--secondaryColor), var(--primaryColor));
}

.book-now-modal {
  max-width: 500px !important;
}

.modal-header.book-now-header {
  border-bottom: 1px solid rgba(255, 130, 2, 0.1);
  background: linear-gradient(180deg, rgba(255, 130, 2, 0.05) 0%, transparent 100%);
  padding: 24px 24px;
}

.book-now-header .tag-row {
  width: 100%;
}

.book-now-header svg {
  animation: heartBeat 1.5s ease-in-out infinite;
  min-width: 16px;
}

@keyframes heartBeat {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

.btn-close {
  background-color: #ff820247;
}

.form-control {
  border: 1px solid rgba(255, 130, 2, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--themeColor);
  box-shadow: 0 0 0 3px rgba(255, 130, 2, 0.1);
  outline: none;
}

textarea.form-control {
  min-height: 90px;
  resize: vertical;
}

.modal-header {
  background: linear-gradient(180deg, rgba(255, 130, 2, 0.05) 0%, transparent 100%);
}

.form-label {
  margin-bottom: 6px;
}

/* Select Arrow Fix */
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF8202' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 18px;
  cursor: pointer;
}

/*  CONTACT PAGE  */
.contact-info-item {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 130, 2, 0.1);
}

.contact-info-item:last-child {
  border-bottom: none;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 130, 2, 0.1);
  border-radius: 8px;
  color: var(--themeColor);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
  background: linear-gradient(135deg, var(--themeColor), var(--primaryColor));
  color: white;
  transform: scale(1.1);
}

.quick-response-note {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0.03));
  border-left: 4px solid #4CAF50;
  padding: 16px;
  border-radius: 6px;
  margin-top: 24px;
}

.response-icon {
  width: 36px;
  height: 36px;
  background: #4CAF50;
  flex-shrink: 0;
}

.form-control::placeholder {
  color: #999;
}

#successMessage {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #2e7d32;
}

.contact-form-box {
  padding: 28px;
  border-radius: 12px;
  border: 1px solid rgba(255, 130, 2, 0.12);
  z-index: 2;
  transition: all 0.3s ease;
}

.contact-form-box:hover {
  box-shadow: 0 8px 24px rgba(255, 130, 2, 0.12);
  border-color: rgba(255, 130, 2, 0.2);
}

.contact-form-box h3 {
  background: linear-gradient(135deg, var(--themeColor), var(--primaryColor));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-form-box h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor), var(--primaryColor));
  border-radius: 2px;
}

/* Google Map Section */
.map-container {
  width: 100%;
  transition: all 0.3s ease;
}

.map-container:hover {
  box-shadow: 0 8px 24px rgba(255, 130, 2, 0.12) !important;
  border-color: rgba(255, 130, 2, 0.25) !important;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* Responsive Map */
@media (max-width: 768px) {
  .map-container iframe {
    min-height: 300px;
  }
}

/* Social Media Icons */
.social-icon-btn {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.12), rgba(200, 70, 0, 0.08));
  color: var(--themeColor);
  border: 2px solid rgba(255, 130, 2, 0.2);
  transition: all 0.3s ease;
  font-size: 24px;
  text-decoration: none;
}

.social-icon-btn:hover {
  background: linear-gradient(135deg, var(--themeColor), var(--primaryColor));
  color: white;
  border-color: var(--themeColor);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 130, 2, 0.3);
}


/* ===========================
   PRIVACY POLICY PAGE - MINIMAL
   =========================== */

.text-secondary {
  color: #404040 !important;
}


/* ===========================
   PRIVACY POLICY PAGE - THEME COLOR
   =========================== */

.text-secondary {
  color: #404040 !important;
}

.policy-title {
  position: relative;
  padding-bottom: 12px;
  display: inline-block;
}

.policy-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor), var(--primaryColor));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.policy-title:hover::after {
  width: 100%;
}

.policy-list li {
  color: #404040;
}

.policy-list strong {
  color: var(--textColor);
  font-weight: 600;
}

.last-updated-section {
  background:#51515194;
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}


/* ===========================
   FEATURED VIDEOS SECTION
   =========================== */

.featured-video-card {
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 130, 2, 0.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.featured-video-card:hover {
  box-shadow: 0 8px 24px rgba(255, 130, 2, 0.15);
  border-color: rgba(255, 130, 2, 0.2);
  transform: translateY(-4px);
}

.video-embed-wrapper {
  width: 100%;
  height: 250px;
  background: #000;
}

.video-embed-wrapper iframe {
  width: 100%;
  height:250px;
  display: block;
}

.video-details {
  flex: 1;
}

.video-details h3 {
  transition: color 0.3s ease;
}

.featured-video-card:hover .video-details h3 {
  color: var(--themeColor);
}

.badge {
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.1), rgba(200, 70, 0, 0.05)) !important;
  border: 1px solid rgba(255, 130, 2, 0.15);
  color: var(--textColor) !important;
  font-size: 13px;
  padding: 8px 14px;
  transition: all 0.3s ease;
}

.featured-video-card:hover .badge {
  background: linear-gradient(135deg, rgba(255, 130, 2, 0.15), rgba(200, 70, 0, 0.1)) !important;
  border-color: rgba(255, 130, 2, 0.25);
}

/* Responsive for Video iframes */
@media (max-width: 768px) {
  .video-embed-wrapper {
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
  }

  .video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .featured-video-card {
    padding: 16px;
  }
}
