/* Instant rendering: disable theme entrance delays and page-transition effects. */
html {
  scroll-behavior: auto !important;
}

*,
*::before,
*::after {
  animation-delay: 0s !important;
  animation-duration: 0s !important;
  transition-delay: 0s !important;
  transition-duration: 0s !important;
}

.appear-animation,
.appear-animation-visible,
[data-appear-animation],
[data-plugin-animated-letters],
[data-plugin-animated-words],
.animated {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

body[data-plugin-page-transition],
body.page-transition-active {
  opacity: 1 !important;
}

.loading-overlay,
body > .loading-overlay {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.loading-overlay-showing {
  overflow: visible !important;
}

/* Cyberpunk WhatsApp & Phone Container */
.cyberpunk-nav-item {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  border-radius: 5px;
}

/* WhatsApp Button */
.cyberpunk-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #25d366, #25d366);
  color: white !important;
  padding: 8px 12px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
  transition: all 0.3s ease-in-out;
  margin-right: 10px; /* Space before phone number */
}

/* WhatsApp Button Hover */
.cyberpunk-whatsapp-btn:hover {
  background: linear-gradient(135deg, #0044ff, #00ffcc);
  box-shadow: 0 0 15px hwb(145 0% 0% / 0.9);
  transform: scale(1.05);
}

/* WhatsApp Icon */
.cyberpunk-whatsapp-icon {
  font-size: 18px !important;
  color: #fff !important;
  margin-right: 8px;
  position: relative;
  top: -1px; /* Aligns WhatsApp icon perfectly */
  text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc;
}

/* Cyberpunk Phone Icon */
.cyberpunk-phone-icon {
  font-size: 18px; /* Adjust icon size */
  color: #00ffcc;
  margin-right: 5px;
  position: relative;
  top: 300px; /* Moves icon down separately */
  text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc;
}

/* Cyberpunk Phone Number */
.cyberpunk-phone-text {
  color: #00ffcc;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  top: -10px; /* Moves phone number up separately */
  transition: all 0.3s ease-in-out;
}

/* Phone Number Hover */
.cyberpunk-phone-text:hover {
  color: white;
  background-color: #00ffcc;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.8);
  transform: scale(1.05);
}

/* Cyberpunk Flicker Effect */
@keyframes cyberpunk-flicker {
  0% {
    text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc;
  }
  50% {
    text-shadow: 0 0 15px #00ffcc, 0 0 20px #00ffcc;
  }
  100% {
    text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc;
  }
}

.cyberpunk-neon-text {
  animation: cyberpunk-flicker 1.5s infinite alternate;
}

/* Style the WhatsApp icon */
.fab.fa-whatsapp {
  font-size: 24px !important; /* Adjust the size as needed */
  color: #25d366 !important; /* WhatsApp green color */
  margin-right: -5px !important; /* Add some spacing between the icon and text */
}

/* Ensure FontAwesome Icons Are Visible */
.fab.fa-whatsapp {
  font-size: 24px !important; /* Adjust size */
  color: #ffffff !important; /* WhatsApp green */
  margin-right: 30px !important; /* Space between icon and text */
  /* display: inline-block; */ /* Ensures visibility */
  /* vertical-align: middle; */
  line-height: 0;
  top: -10px;
  left: -10px;
}

#header .header-nav-top .nav > li > a [class*="fa-"],
#header .header-nav-top .nav > li > a .icons,
#header .header-nav-top .nav > li > span [class*="fa-"],
#header .header-nav-top .nav > li > span .icons {
  margin-right: 3px;
  font-size: 2em;
  position: relative;
  padding-top: 20px;
  left: 20px;
  top: -9px;
}

/* WhatsApp Button Styling */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background-color: #25d366; /* WhatsApp green */
  color: white !important;
  padding: 10px 10px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn:hover {
  background-color: #1ebe5c;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.9);
  transform: scale(1.05);
}

/* Phone Icon Styling */
.fas.fa-phone {
  font-size: 200px;
  color: #25d366;
  margin-left: 0px;
  display: inline-block;
}

/* Phone Number Styling */
.ws-nowrap strong a {
  color: #25d366;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.ws-nowrap strong a:hover {
  color: white;
  background-color: #25d366;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.9);
  transform: scale(1.05);
}

.whatsapp-green {
  color: #25d366 !important;
}

/* Style the phone number link */
span.ws-nowrap a {
  color: #25d366; /* WhatsApp green color */
  text-decoration: none; /* Remove underlines from the link */
  font-weight: bold; /* Optionally make the text bold */
}

.img-fluid {
  height: 320px; /* Set your desired height */
  width: auto;
  object-fit: cover; /* This ensures the image covers the area without distorting aspect ratio */
}

/* Style for WhatsApp neon green links with a 2px glow */
.whatsapp-link {
  color: #25d366 !important; /* Neon green color code */
  text-decoration: none; /* Remove underlines */
  text-shadow: 0 0 2px #25d366; /* Add a 2px glow effect in WhatsApp green */
}

.gallery-container {
  width: 90%;
  margin: auto;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
}

.image-item img {
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

/* Modal/Lightbox */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
  display: none;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.customer-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Default: 3 columns */
  grid-gap: 20px;
  padding: 20px;
}

@media (max-width: 998px) { 
  .customer-reviews {
    grid-template-columns: 1fr; /* Switch to 1 column on smaller screens */
  }
}


.review {
  background: #f9f9f9; /* Light background for the review */
  padding: 15px; /* Padding inside each review box */
  border-radius: 5px; /* Rounded corners for the boxes */
  margin-bottom: 20px; /* Space below each review */
  color: black; /* Text color */
  position: relative; /* Required for pseudo-element positioning */
  box-shadow: 0 0 8px #0bb77d, 5px 0 8px #0bb77d, -5px 0 8px #0bb77d; /* #0bb77d neon green glow effect */
  animation: neon-pulse 2s infinite; /* Green pulse effect */
}

.gold-stars {
  background-color: #0bb77d; /* #0bb77d green background for stars */
  color: white; /* White color for the stars */
  padding: 5px; /* Padding around the stars */
  border-radius: 5px; /* Slightly rounded corners */
  box-shadow: 0 0 5px #ffd700, 0 0 10px #ffd700, 0 0 15px #ffd700; /* Gold glow effect */
  margin-right: 5px; /* Space after the stars */
  display: inline-block;
  font-size: 1.2em; /* Slightly larger font size for stars */
  animation: star-glow 3s infinite alternate ease-in-out; /* Gentle glow animation */
}

/* Neon green pulse animation */
@keyframes neon-pulse {
  0%,
  100% {
    box-shadow: 0 0 1px #0bb77d, 0 0 2px #0bb77d, 0 0 3px #0bb77d; /* Subtle green glow */
  }
  50% {
    box-shadow: 0 0 3px #0bb77d, 0 0 5px #0bb77d, 0 0 7px #0bb77d; /* Intense green glow */
  }
}

/* Smaller star glow animation */
@keyframes star-glow {
  0% {
    box-shadow: 0 0 2px #ffd700, 0 0 4px #ffd700, 0 0 6px #ffd700; /* Dimmer and smaller glow */
  }
  100% {
    box-shadow: 0 0 4px #ffd700, 0 0 6px #ffd700, 0 0 8px #ffd700; /* Brighter but still small glow */
  }
}

/* Mobile view */
@media (max-width: 768px) {
  /* Move the whole container 50px from the left */
  .ws-nowrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 60px;
  }

  /* Make the WhatsApp button occupy the full row */
  .cyberpunk-whatsapp-btn {
    flex-basis: 100%;
    margin-bottom: 10px; /* Space between WhatsApp button and phone row */
  }

  /* Ensure phone icon and number are on the same row */
  .cyberpunk-phone-icon,
  .cyberpunk-phone-text,
  .ws-nowrap strong {
    position: static; /* Remove any positional offsets */
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
  }
}

@media (max-width: 768px) { /* Adjust for mobile screens */
    #header .header-btn-collapse-nav {
        left: 335px; /* Move further left */
        position: absolute; /* Ensure it's positioned relative to the container */
    }
}
#header .header-body {
	display: flex;
	flex-direction: column;
	background: #1b3f63;
	transition: min-height 0.3s ease;
	width: 100%;
	border-top: 3px solid #EDEDED;
	border-bottom: 1px solid transparent;
	z-index: 1001;
}

/* Header Nav Main - Skin */
@media (min-width: 992px) {
	#header .header-nav-main nav > ul > li > a {
		color: #f9f9f9;
}
}

#chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Courier New', monospace; /* Monospace for that terminal vibe */
}

#chatbot-toggle {
    background: linear-gradient(45deg, #ff00ff, #00ffff); /* Neon pink to cyan */
    color: #000;
    border: 2px solid #00ffff; /* Cyan border */
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    box-shadow: 0 0 10px #ff00ff, 0 0 20px #00ffff; /* Neon glow */
    transition: all 0.3s ease;
}

#chatbot-toggle:hover {
    box-shadow: 0 0 20px #ff00ff, 0 0 30px #00ffff; /* Brighter glow on hover */
    transform: scale(1.05); /* Slight scale-up */
}

#chatbot-box {
    background: #1a1a1a; /* Dark, almost black */
    width: 320px;
    max-height: 420px;
    border: 1px solid #ff00ff; /* Neon pink border */
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5), inset 0 0 10px rgba(0, 255, 255, 0.3); /* Outer and inner glow */
    display: none;
    flex-direction: column;
    backdrop-filter: blur(5px); /* Slight blur for glass effect */
}

#chatbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    color: #00ffff; /* Cyan text */
    font-size: 14px;
    text-shadow: 0 0 5px #00ffff; /* Subtle glow */
}

#chatbot-messages strong {
    color: #ff00ff; /* Neon pink for "You:" and "Bot:" */
    text-shadow: 0 0 5px #ff00ff;
}

#chatbot-input-area {
    display: flex;
    border-top: 1px solid #00ffff; /* Cyan separator */
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent black */
}

#chatbot-input {
    flex: 1;
    border: none;
    padding: 10px;
    outline: none;
    background: transparent;
    color: #fff; /* White text */
    font-size: 14px;
    text-shadow: 0 0 3px #fff;
}

#chatbot-input::placeholder {
    color: #666; /* Dim gray placeholder */
    text-shadow: none;
}

#chatbot-send {
    background: linear-gradient(45deg, #ff00ff, #800080); /* Pink to purple */
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 0 10px #ff00ff; /* Neon glow */
    transition: all 0.3s ease;
}

#chatbot-send:hover {
    box-shadow: 0 0 20px #ff00ff, 0 0 30px #800080; /* Brighter glow */
}

/* Legacy restore navigation/process fixes 2026-06-25 */
.home-concept .project-image .fc-slideshow {
    display: block !important;
    max-width: 170px !important;
    height: 170px !important;
    margin: 0 auto !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.home-concept .project-image .fc-slideshow ul.fc-slides,
.home-concept .project-image .fc-slideshow ul.fc-slides li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.home-concept .project-image .fc-slideshow ul.fc-slides li {
    display: none !important;
}
.home-concept .project-image .fc-slideshow ul.fc-slides li:last-child {
    display: block !important;
}
.home-concept .project-image .fc-slideshow img {
    display: block !important;
    width: 155px !important;
    height: 155px !important;
    object-fit: contain !important;
    border-radius: 50% !important;
    margin: 8px auto !important;
    opacity: 1 !important;
    visibility: visible !important;
}
#header .header-btn-collapse-nav {
    background: #123f63 !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.45) !important;
    border-radius: 4px !important;
    min-width: 56px !important;
    height: 42px !important;
    padding: 0 12px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    opacity: 1 !important;
    visibility: visible !important;
}
#header .header-btn-collapse-nav i {
    color: #fff !important;
    font-size: 20px !important;
    line-height: 1 !important;
}
#header .header-btn-collapse-nav::after {
    content: "Menu";
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}
@media (max-width: 991px) {
    #header .header-btn-collapse-nav {
        display: inline-flex !important;
    }
    #header .header-nav-main nav.collapse.show {
        display: block !important;
        position: absolute !important;
        left: 12px !important;
        right: 12px !important;
        top: 100% !important;
        background: #173f63 !important;
        padding: 10px !important;
        z-index: 9999 !important;
        box-shadow: 0 12px 25px rgba(0,0,0,.25) !important;
    }
    #header .header-nav-main nav.collapse.show > ul,
    #header .header-nav-main nav.collapse.show > ul > li {
        display: block !important;
    }
    #header .header-nav-main nav.collapse.show > ul > li > a {
        color: #fff !important;
        padding: 10px 12px !important;
    }
}
@media (min-width: 992px) {
    #header .header-nav-main nav.collapse {
        display: flex !important;
        visibility: visible !important;
        height: auto !important;
    }
}

/* Legacy restore custom-map hover overlay fix 2026-06-25 */
section.section-custom-map > .overlay {
    pointer-events: none !important;
}
section.section-custom-map > .overlay:before,
section.section-custom-map > .overlay:hover:before,
section.section-custom-map > .overlay.overlay-show:before,
section.section-custom-map > .overlay.show:before {
    opacity: 0 !important;
    background: transparent !important;
}

/* Legacy restore single website icon coin fix 2026-06-25 */
.home-concept .project-image .legacy-single-website-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 170px !important;
    height: 170px !important;
    margin: 0 auto !important;
    overflow: visible !important;
    perspective: 800px !important;
}
.home-concept .project-image .legacy-single-website-icon a {
    display: block !important;
    width: 170px !important;
    height: 170px !important;
    border-radius: 50% !important;
    transform-style: preserve-3d !important;
}
.home-concept .project-image .legacy-single-website-icon img {
    display: block !important;
    width: 170px !important;
    height: 170px !important;
    object-fit: contain !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.home-concept .project-image:hover .legacy-single-website-icon a,
.home-concept .project-image .legacy-single-website-icon:hover a {
    animation: legacyWebsiteCoinSpin 3s ease-in-out infinite !important;
}
@keyframes legacyWebsiteCoinSpin {
    0% { transform: rotateY(0deg); }
    15% { transform: rotateY(180deg); }
    30% { transform: rotateY(360deg); }
    100% { transform: rotateY(360deg); }
}



/* Legacy review proof and accessibility fixes 2026-06-25 */
.legacy-proof-strip {
    background: #070927;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    overflow: hidden;
}
.legacy-proof-strip__inner {
    display: flex;
    gap: 10px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 10px 16px;
    overflow-x: auto;
    scrollbar-width: thin;
}
.legacy-proof-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 34px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    color: #fff !important;
    font-weight: 700;
    line-height: 1.1;
    text-decoration: none !important;
}
.legacy-proof-pill:hover,
.legacy-proof-pill:focus {
    background: rgba(221, 190, 112, .18);
    border-color: rgba(221, 190, 112, .65);
    color: #fff !important;
}
.legacy-proof-pill--call {
    color: #ddbe70 !important;
}
.legacy-proof-pill--whatsapp {
    background: #03b84e;
    border-color: #03b84e;
    color: #fff !important;
}
.legacy-review-showcase {
    margin: 32px 0 42px;
    padding: 28px 0 20px;
    background: #0d1036;
    border: 1px solid rgba(221, 190, 112, .22);
    border-radius: 8px;
    overflow: hidden;
}
.legacy-review-summary {
    display: flex;
    gap: 18px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto 22px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid rgba(7, 9, 39, .14);
    border-radius: 8px;
    color: #101426;
}
.legacy-review-summary h2 {
    margin: 0 0 4px;
    color: #101426;
    font-size: 24px;
    line-height: 1.2;
}
.legacy-review-summary p {
    margin: 0;
    color: #333;
}
.legacy-review-summary__brands {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 0 0 auto;
    font-weight: 800;
}
.legacy-review-summary__brands span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eef3ff;
    color: #174ea6;
}
.legacy-review-summary__brands span:nth-child(2) {
    color: #00b67a;
}
.legacy-review-summary__brands span:nth-child(3) {
    color: #1877f2;
}
.legacy-stars {
    color: #f5b301;
    letter-spacing: 1px;
    white-space: nowrap;
}
.legacy-review-write {
    margin-left: auto;
    flex: 0 0 auto;
    padding: 11px 18px;
    border-radius: 8px;
    background: #1a73e8;
    color: #fff !important;
    font-weight: 700;
    text-decoration: none !important;
}
.legacy-review-write:hover,
.legacy-review-write:focus {
    background: #1558b0;
    color: #fff !important;
}
.legacy-review-carousel-shell {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
}
.legacy-review-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 330px);
    gap: 16px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}
.legacy-review-card {
    min-height: 230px;
    padding: 22px;
    background: #fff;
    border: 1px solid rgba(7, 9, 39, .12);
    border-radius: 8px;
    color: #1d2533;
    scroll-snap-align: start;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}
.legacy-review-card p {
    color: #293241;
    font-size: 15px;
    line-height: 1.55;
}
.legacy-review-card__top {
    display: grid;
    gap: 2px;
    margin-bottom: 10px;
}
.legacy-review-card__top strong {
    color: #111827;
    font-size: 16px;
}
.legacy-review-card__top span {
    color: #5b6472;
    font-size: 13px;
}
.legacy-review-nav {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #174ea6;
    font-size: 32px;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
    cursor: pointer;
}
.legacy-review-nav:hover,
.legacy-review-nav:focus {
    background: #ddbe70;
    color: #070927;
}
.legacy-review-all {
    margin: 12px 0 0;
    text-align: center;
}
.legacy-review-all a {
    color: #6fb6ff !important;
    font-weight: 700;
}
@media (max-width: 767px) {
    .legacy-review-showcase {
        margin: 24px -6px 34px;
        padding: 22px 0 18px;
    }
    .legacy-review-summary {
        display: grid;
        margin: 0 12px 18px;
        padding: 16px;
    }
    .legacy-review-write {
        margin-left: 0;
        text-align: center;
    }
    .legacy-review-carousel-shell {
        gap: 8px;
        padding: 0 8px;
    }
    .legacy-review-track {
        grid-auto-columns: minmax(248px, 84vw);
    }
    .legacy-review-nav {
        width: 36px;
        height: 36px;
        font-size: 28px;
    }
}


/* Legacy full-width moving review strip 2026-06-25 */
.legacy-review-showcase {
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 -50vw 32px !important;
    padding: 22px 0 30px !important;
    background: #fff !important;
    border: 0 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-shadow: none !important;
}
.legacy-review-summary {
    max-width: 1180px !important;
    margin: 0 auto 22px !important;
    border: 1px solid rgba(17, 24, 39, .08) !important;
    box-shadow: 0 14px 34px rgba(17, 24, 39, .10) !important;
}
.legacy-review-write {
    display: none !important;
}
.legacy-review-carousel-shell {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 0 !important;
    gap: 0 !important;
    overflow: hidden !important;
}
.legacy-review-nav {
    display: none !important;
}
.legacy-review-track {
    display: flex !important;
    width: max-content !important;
    max-width: none !important;
    grid-auto-flow: unset !important;
    grid-auto-columns: unset !important;
    gap: 18px !important;
    overflow: visible !important;
    padding: 10px 18px 18px !important;
    scroll-snap-type: none !important;
    scrollbar-width: none !important;
    will-change: transform;
}
.legacy-review-track::-webkit-scrollbar {
    display: none !important;
}
.legacy-review-track--marquee {
    animation-name: legacyReviewMarquee !important;
    animation-duration: 44s !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
}
.legacy-review-showcase:hover .legacy-review-track--marquee,
.legacy-review-showcase:focus-within .legacy-review-track--marquee {
    animation-play-state: paused;
}
.legacy-review-card {
    flex: 0 0 315px !important;
    min-height: 225px !important;
    border: 1px solid rgba(17, 24, 39, .08) !important;
    box-shadow: 0 16px 38px rgba(17, 24, 39, .16) !important;
}
.legacy-review-card:hover,
.legacy-review-card:focus-within {
    box-shadow: 0 20px 46px rgba(17, 24, 39, .22) !important;
    transform: translateY(-2px);
}
.legacy-review-all {
    margin-top: 12px !important;
}
.legacy-review-all a {
    color: #174ea6 !important;
}
@keyframes legacyReviewMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .legacy-review-track--marquee {
        animation: none !important;
    }
    .legacy-review-carousel-shell {
        overflow-x: auto !important;
    }
}
@media (max-width: 767px) {
    .legacy-review-showcase {
        margin-top: 26px !important;
        margin-bottom: 38px !important;
        padding: 20px 0 28px !important;
    }
    .legacy-review-summary {
        width: calc(100vw - 28px) !important;
        margin: 0 14px 18px !important;
    }
    .legacy-review-track {
        gap: 14px !important;
        padding: 8px 14px 16px !important;
    }
    .legacy-review-card {
        flex-basis: 275px !important;
    }
}


/* Legacy review under hero spacing 2026-06-25 */
.legacy-review-showcase {
    margin-top: 0 !important;
}
