/* Testimonial Blockquote Styles */
.blockquote {
    margin-bottom: 0.2rem;
    font-size: 15px;
    color: #414141;
    font-weight: 500;
}

/* Testimonial Name Styles */
.block-info .title {
    font-size: 13px;
    font-weight: 500;
    color: #414141;
}

/* Testimonial Caption Text Styles */
.block-info .caption-text {
    font-size: 13px;
    color: #414141;
}

/* Testimonial Image Container - Narrower width */
#testimonial-container .col-md-2 {
    flex: 0 0 auto;
    width: 15.66666667% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonial Image Container Wrapper */
#testimonial-container .col-md-2 > div {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Testimonial Image Styles */
#testimonial-container img {
    max-height: 120px;
    max-width: 120px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(80%);
}

/* Rounded Circle Border Radius */
.rounded-circle {
    border-radius: 5% !important;
}

/* Suphero Showcase Styles */
.suphero-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.suphero-showcase-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.suphero-showcase-card {
  display: flex;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid #ededed;
  background: #ffffffad;
  transition: all 0.3s ease;
  overflow: hidden;
  align-items: flex-start;
}

.suphero-showcase-item:hover .suphero-showcase-card,
.suphero-showcase-item.active .suphero-showcase-card {
  border-color: #ff88004d;
  background: linear-gradient(135deg, #fff8f07d 0%, #ffffff 100%);
  box-shadow: 0 4px 10px rgba(255, 136, 0, 0.05);
  transform: translateX(8px);
}

.suphero-showcase-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 2px;
}

.suphero-showcase-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2a2a2a;
  margin: 0;
  line-height: 2.4;
  transition: color 0.1s ease;
  cursor: pointer;
}

.suphero-showcase-item.active .suphero-showcase-title {
  color: #ff8800;
}

.suphero-showcase-desc {
  font-size: 0.825rem;
  font-weight: 400;
  color: #414141;
  line-height: 1.6;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
  margin-top: 0;
}

.suphero-showcase-item.active .suphero-showcase-desc {
  max-height: 200px;
  opacity: 1;
  margin-top: 2px;
}

.suphero-showcase-progress {
  width: 100%;
  height: 3px;
  background: #f5f5f5;
  border-radius: 2px;
  margin-top: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.suphero-showcase-item.active .suphero-showcase-progress {
  max-height: 20px;
  opacity: 1;
  margin-top: 12px;
}

.suphero-showcase-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #e67700 0%, #ff8800 100%);
  width: 0%;
  border-radius: 2px;
  transition: width 0.1s linear;
}

.suphero-showcase-item.active .suphero-showcase-progress-bar {
  animation: suphero-progressFill 15s linear forwards;
}

@keyframes suphero-progressFill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.suphero-showcase-visual {
  position: sticky;
  top: 100px;
  height: 500px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #f5f5f5;
  box-shadow: 0 10px 40px rgb(0 0 0 / 3%);
}

.suphero-showcase-visual-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.suphero-showcase-visual-item.active {
  opacity: 1;
  visibility: visible;
}

/* Keep only first image visible, hide others */
.suphero-showcase-visual-item:not([data-visual="1"]) {
  display: none;
}

.suphero-showcase-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.suphero-showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.suphero-showcase-visual-item.active .suphero-showcase-image {
  transform: scale(1);
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .suphero-showcase-visual {
    height: 400px;
    margin-top: 40px;
  }

  .suphero-showcase-card {
    padding: 16px;
  }

  .suphero-showcase-title {
    font-size: 0.95rem;
  }

  .suphero-showcase-desc {
    font-size: 0.8rem;
  }
}

@media (min-width: 992px) {
  .mb-lg-6 {
    margin-bottom: 1rem !important;
  }
}

/* Suphero Shimmer Styles */
.suphero-shimmer {
  font-size: 2rem;
  line-height: 38px;
  font-weight: 600 !important;
  background: linear-gradient(90deg, #2a2a2a 0%, #2a2a2a 40%, #2874a6 50%, #2a2a2a 60%, #2a2a2a 100%);
  background-size: 1000px 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: suphero-shimmer 5s infinite linear;
}

@keyframes suphero-shimmer {
  0% { background-position: 0 0; }
  100% { background-position: 1000px 0; }
}

.suphero-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 30px !important;
  padding: 8px 24px !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: #2a2a2a !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #ffffff 0%, #fbfbfb 100%) !important;
  border: 1px solid rgb(233 233 233 / 51%) !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  position: relative !important;
}

.suphero-btn::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 9px;
  padding: 1px;
  background: linear-gradient(90deg, transparent 30%, rgba(255, 220, 180, 0.5) 46%, rgba(255, 200, 150, 0.6) 50%, rgba(255, 220, 180, 0.5) 54%, transparent 70%);
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: suphero-btn-border 4s linear infinite;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.suphero-btn:hover::before {
  animation-play-state: paused;
  opacity: 0;
}

@keyframes suphero-btn-border {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.suphero-btn:hover {
  background: linear-gradient(135deg, #f0f0f0 0%, #fafafa 100%) !important;
  color: #2a2a2a !important;
  transform: translateY(-1px);
}

.suphero-btn em {
  color: #2a2a2a !important;
}

/* Mobile Responsive for Showcase Section */
@media (max-width: 768px) {
  div[style*="display: flex"][style*="gap: 80px"] {
    flex-direction: column !important;
    gap: 60px !important;
  }
  
  div[style*="flex: 0 0 50%"] {
    flex: 0 0 100% !important;
    position: relative !important;
    top: 0 !important;
  }
  
  div[style*="position: sticky"] {
    position: relative !important;
    top: 0 !important;
  }
  
  h2[style*="42px"] {
    font-size: 32px !important;
  }
  
  h2[style*="font-size"] {
    font-size: 24px !important;
  }
  
  h3[style*="22px"] {
    font-size: 18px !important;
  }
  
  p[style*="18px"], p[style*="16px"] {
    font-size: 14px !important;
  }
  
  div[style*="padding: 48px"] {
    padding: 24px 0 !important;
  }
}

/* Footer Styles */
.suphero-footer a,
.suphero-footer .link-base,
.suphero-footer a.link-base,
.suphero-footer .footer-link,
.suphero-footer a.footer-link,
.suphero-footer .link-base.footer-link,
.suphero-footer a.link-base.footer-link,
footer a,
footer .link-base,
footer a.link-base,
footer .footer-link,
footer a.footer-link,
footer .link-base.footer-link {
  color: #282828 !important;
}

.suphero-footer a:hover,
.suphero-footer .link-base:hover,
.suphero-footer a.link-base:hover,
.suphero-footer .footer-link:hover,
.suphero-footer a.footer-link:hover,
.suphero-footer .link-base.footer-link:hover,
.suphero-footer a.link-base.footer-link:hover,
footer a:hover,
footer .link-base:hover,
footer a.link-base:hover,
footer .footer-link:hover,
footer a.footer-link:hover,
footer .link-base.footer-link:hover {
  color: #000000 !important;
}

/* Footer Active Link - Orange */
.suphero-footer .footer-link.active,
.suphero-footer a.footer-link.active,
.suphero-footer .link-base.footer-link.active,
.suphero-footer a.link-base.footer-link.active,
footer a.footer-link.active,
footer .footer-link.active,
footer .link-base.footer-link.active,
footer a.link-base.footer-link.active,
.lisuphero-base.footer-link.active {
  color: #ff8800 !important;
  font-weight: 400 !important;
}

.list>* {
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .0);
  margin-top: var(--bs-gutter-y);
}

/* Resources Menu Styles */
.resources-menu {
  /* Special styles for Resources menu */
}

.resources-menu .suphero-menu-item {
  /* Special styles for Resources menu items */
}

/* Resources Menu Styles - Override suphero-custom.css */
.suphero-header .suphero-menu-sub.resources-menu .suphero-menu-link,
.suphero-header .suphero-menu-sub.resources-menu .suphero-menu-item .suphero-menu-link,
.suphero-header .suphero-menu-sub.resources-menu a.suphero-menu-link,
.suphero-menu-sub.resources-menu .suphero-menu-link,
.suphero-menu-sub.resources-menu .suphero-menu-item .suphero-menu-link,
.suphero-menu-sub.resources-menu a.suphero-menu-link,
.resources-menu .suphero-menu-link,
.resources-menu .suphero-menu-item .suphero-menu-link,
.resources-menu a.suphero-menu-link {
  /* Special styles for Resources menu links */
  padding: 4px 16px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: #2a2a2a !important;
  transition: color 0.2s ease;
}

.suphero-header .suphero-menu-sub.resources-menu .suphero-menu-link:hover,
.suphero-header .suphero-menu-sub.resources-menu .suphero-menu-item .suphero-menu-link:hover,
.suphero-header .suphero-menu-sub.resources-menu a.suphero-menu-link:hover,
.suphero-menu-sub.resources-menu .suphero-menu-link:hover,
.suphero-menu-sub.resources-menu .suphero-menu-item .suphero-menu-link:hover,
.suphero-menu-sub.resources-menu a.suphero-menu-link:hover,
.resources-menu .suphero-menu-link:hover,
.resources-menu .suphero-menu-item .suphero-menu-link:hover,
.resources-menu a.suphero-menu-link:hover {
  padding: 4px 16px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: #ff8800 !important;
}

/* Features menu hover - orange color - for all states */
.suphero-menu-mega .suphero-menu-sub:nth-child(2) .suphero-menu-link:hover,
.suphero-menu-mega .suphero-menu-sub:nth-child(2) .suphero-menu-item .suphero-menu-link:hover,
.suphero-menu-mega .suphero-menu-sub:nth-child(2) .suphero-menu-item:hover .suphero-menu-link,
.suphero-menu-mega .suphero-menu-sub:nth-child(2) a.suphero-menu-link:hover,
.suphero-header .suphero-menu-sub:nth-child(2) .suphero-menu-link:hover,
.suphero-header .suphero-menu-sub:nth-child(2) .suphero-menu-item .suphero-menu-link:hover,
.suphero-header .suphero-menu-sub:nth-child(2) .suphero-menu-item:hover .suphero-menu-link,
.suphero-header .suphero-menu-sub:nth-child(2) a.suphero-menu-link:hover,
.suphero-menu-sub:nth-child(2) .suphero-menu-link:hover,
.suphero-menu-sub:nth-child(2) .suphero-menu-item .suphero-menu-link:hover,
.suphero-menu-sub:nth-child(2) .suphero-menu-item:hover .suphero-menu-link,
.suphero-menu-sub:nth-child(2) a.suphero-menu-link:hover,
.suphero-menu-sub:nth-child(2) li:hover .suphero-menu-link,
.suphero-menu-sub:nth-child(2) li .suphero-menu-link:hover {
  color: #ff8800 !important;
}

/* Try SupHero Section - Fix button overflow */
.suphero-menu-sub:first-child > .suphero-menu-item > div {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.suphero-menu-sub:first-child .btn-primary {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
}

