.note .note-warning {
  display: none !important;
}

/* ===================================================
   GUARDIANT AI SEARCH BAR — HEADER
   Premium animated gradient-border AI search bar
=================================================== */

/* ---- Keyframe Animations ---- */
@keyframes aiGradientBorder {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes aiSparkle {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }

  33% {
    transform: scale(1.35) rotate(18deg);
    opacity: 0.75;
  }

  66% {
    transform: scale(0.85) rotate(-12deg);
    opacity: 0.9;
  }
}

@keyframes aiBarPulse {

  0%,
  100% {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.55), 0 0 0 0 rgba(224, 9, 37, 0.0);
  }

  50% {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.55), 0 0 22px rgba(224, 9, 37, 0.18);
  }
}

/* ---- Middle Header Override ---- */
.guardiant-mid-header {
  background: #fcf7f7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4) !important;
}

.guardiant-mid-header .nav_block {
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.guardiant-mid-header .navbar-brand img.logo_dark {
  max-height: 54px;
  min-width: 100px;
}

/* ---- AI Search Wrapper ---- */
.guardiant-ai-search-wrap {
  flex: 1;
  max-width: 780px;
  min-width: 0;
}

.guardiant-ai-search-wrap form {
  width: 100%;
  margin: 0;
}

/* ---- AI Search Bar Core ---- */
.ai-search-bar {
  display: flex;
  align-items: center;
  height: 54px;
  border-radius: 100px;
  position: relative;

  /* Animated gradient border via background-clip trick */
  border: 2px solid transparent;
  background:
    linear-gradient(#0c1d34, #0c1d34) padding-box,
    linear-gradient(90deg, #E00925 0%, #4285F4 40%, #c026d3 70%, #E00925 100%) border-box;
  background-size: 300% 100%;
  animation: aiGradientBorder 5s linear infinite, aiBarPulse 3.5s ease-in-out infinite;

  transition: all 0.35s ease;
}

.ai-search-bar:focus-within {
  animation: aiGradientBorder 2s linear infinite;

}

/* ---- AI Sparkle Badge ---- */
.ai-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px 0 18px;
  color: #FF4D63;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  user-select: none;
}

.ai-badge svg {
  animation: aiSparkle 2.8s ease-in-out infinite;
  flex-shrink: 0;
}

/* ---- Category Select ---- */
.ai-cat-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ai-cat-select {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  color: #6b8299;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 24px 8px 0;
  cursor: pointer;
  outline: none;
  max-width: 145px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.ai-cat-select:focus {
  color: #94A3B8;
}

.ai-cat-select option {
  background: #0c1d34;
  color: #cbd5e0;
  font-size: 13px;
}

.ai-cat-caret {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: #3d5066;
  font-size: 10px;
  pointer-events: none;
  line-height: 1;
}

/* ---- Divider ---- */
.ai-bar-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  margin: 0 10px;
}

/* ---- Text Input ---- */
.ai-search-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #dde6f0;
  font-size: 13.5px;
  padding: 10px 8px;
  outline: none !important;
  min-width: 0;
  font-family: inherit;
}

.ai-search-input::placeholder {
  color: #2e4060;
  font-style: italic;
  font-size: 13px;
}

.ai-search-input:focus::placeholder {
  color: #3d5575;
}

/* ---- Submit Button ---- */
.ai-search-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #E00925 0%, #B00018 100%);
  border: none;
  border-radius: 100px;
  color: #fff;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  margin: 3px;
  height: calc(100% - 6px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(224, 9, 37, 0.38);
  letter-spacing: 0.3px;
}

.ai-search-btn:hover {
  background: linear-gradient(135deg, #FF1744 0%, #C62828 100%);
  box-shadow: 0 6px 24px rgba(224, 9, 37, 0.58);
  transform: scale(1.03);
  color: #fff;
}

.ai-search-btn i {
  font-size: 15px;
  line-height: 1;
}

.ai-btn-text {
  font-size: 13px;
  font-weight: 700;
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {

  .ai-cat-wrap,
  .ai-bar-divider {
    display: none;
  }

  .ai-badge {
    padding-left: 14px;
  }
}

@media (max-width: 991px) {
  .guardiant-ai-search-wrap {
    max-width: 100%;
  }

  .ai-search-bar {
    height: 48px;
  }

  .ai-btn-text {
    display: none;
  }

  .ai-search-btn {
    padding: 9px 15px;
  }
}

@media (max-width: 767px) {
  .guardiant-mid-header .nav_block {
    flex-wrap: wrap;
  }

  .guardiant-ai-search-wrap {
    width: 100%;
    order: 3;
    margin-top: 8px;
  }

  .ai-badge {
    display: none;
  }
}

/* Mega Dropdown Container */
.mega-dropdown {
  position: relative;
  /* For dropdown positioning */
}

/* Full-width Dropdown Menu */
.mega-dropdown .dropdown-menu {
  position: absolute;
  /* Positioned relative to .mega-dropdown */
  top: 100%;
  /* Align it below the parent item */
  left: 0;
  /* Start from the left edge of the parent */
  width: 80vw;
  /* Full viewport width */
  max-width: 100vw;
  /* Prevent exceeding viewport width */
  margin-left: calc(-100vw / 3 + 50%);
  /* Center align to viewport */
  padding: 20px;
  /* Add padding */
  background-color: #f7f7f7;
  /* Background color */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* Drop shadow */
  z-index: 1000;
  /* Ensure it appears on top */
  display: none;
  /* Hidden by default */
  box-sizing: border-box;
  /* Include padding in width calculation */
}

/* Show the mega menu on hover */
.mega-dropdown:hover .dropdown-menu {
  display: block;
  /* Show on hover */
}

/* Flexbox for Columns */
.mega-dropdown .dropdown-menu .row {
  margin: 0;
  /* Remove default margin */
  display: flex;
  /* Flexbox layout */
  flex-wrap: wrap;
  /* Wrap columns */
}

/* Column Styling */
.mega-dropdown .dropdown-menu .col-md-3 {
  padding: 0 15px;
  /* Padding inside columns */
  box-sizing: border-box;
  /* Include padding in width calculation */
}

/* Category Item Styling */
.mega-menu-item {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 10px 10px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.mega-menu-item:hover {

  background-color: white;
  color: red;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}

/* Image Styling */
.mega-menu-item img {
  max-width: 50px;
  /* Size the image */
  height: auto;
  /* Maintain aspect ratio */
  margin-right: 10px;
  /* Space between image and text */
}

/* Text Styling */
.mega-menu-item span {
  font-size: 14px;
  /* Text size */
  color: #333;
  /* Text color */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .mega-dropdown .dropdown-menu {
    padding: 10px;
    /* Adjust padding for tablets */
    margin-left: 0;
    /* Align to viewport on tablets */
  }

  .mega-dropdown .dropdown-menu .col-md-3 {
    flex: 0 0 50%;
    /* 2 columns on tablets */
  }
}

@media (max-width: 768px) {
  .mega-dropdown .dropdown-menu {
    padding: 10px;
    /* Adjust padding for tablets */
    margin-left: 0;
    /* Align to viewport on tablets */
  }

  .mega-dropdown .dropdown-menu .col-md-3 {
    flex: 0 0 50%;
    /* 2 columns on tablets */
  }
}

@media (max-width: 480px) {
  .mega-dropdown .dropdown-menu {
    padding: 5px;
    /* Adjust padding for mobile screens */
    margin-left: 0;
    /* Align to viewport on mobile screens */
  }

  .mega-dropdown .dropdown-menu .col-md-3 {
    flex: 0 0 100%;
    /* 1 column on mobile screens */
  }
}




.categories_box {
  text-align: center;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 30px;
}

.product_info {
  padding: 15px;
  background-color: #fefeff;
}

.bottom_header {

  background: #052853;
  margin-bottom: -24px !important;

}



.guardiant-box {
  background-color: var(--color-2nd);
  padding: 30px;
  display: flex;
  /* Use flexbox for centering */
  justify-content: center;
  border-radius: 30px;
  min-height: 200px;
  font-size: 14px;
  margin-bottom: 25px;
}

.guardiant-box:hover {
  background-color: var(--color-1st);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Adds a drop shadow */
}

.guardiant-box a h5 {

  font-size: 16px;
  font-weight: 700;
  color: white;
  text-align: center;
}

.guardiant-box a img {
  width: auto;
  margin: auto;
  /* Center horizontally and vertically */
  padding: 0;
  filter: invert(1);
  align-items: center;
  height: 70px;
  margin-bottom: 20px;
  display: block;
}

.bg-red {
  background-color: var(--color-1st);
}

.trust-box {
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 20px;

  border-radius: 8px;
  background-color: var(--color-1st);
  /* Light background color */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Light shadow */
}

.trust-box img {
  width: 70px;
  height: auto;
  filter: invert(1);
  margin-right: 20px;
}

.trust-box .trust-info {
  text-align: right;
  display: ruby;
}

.trust-box .trust-info .trust-title {
  font-size: 16px;
  color: white;
  font-weight: bold;
  margin-bottom: 1px;
}

.trust-box .trust-info .trust-count {
  font-size: 30px;
  color: white;
  font-weight: 800;
}

.guardiant-form {
  background: rgb(255 255 255 / 7%);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.p0 {
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.wwd {
  padding: 10%;
}

@media only screen and (min-width: 1280px) {
  .container {
    max-width: 1370px;
  }
}

.about {
  background-image: url(https://www.armourparts.com/storage/general/armourparts-bg-5.webp);
  background-size: cover;
}

.main_menu_uppercase .navbar-nav>li>.nav-link {

  color: white;
}

.enquiry_button {
  width: 100%;
  /* Ensures the container takes full width */
}

.whatsapp-enquiry-button>button {
  background-color: var(--color-2nd);
  /* Red background */
  color: white;
  /* White text color */
  border: none;
  /* No border */
  padding: 3px 20px;
  /* Padding for the button */
  font-size: 16px;
  /* Font size */
  cursor: pointer;
  /* Changes cursor to pointer on hover */
  width: 100%;
  /* Full width of the button */
  transition: background-color 0.3s ease;
  /* Smooth transition for hover */
  display: block;
  /* Block display to take full width */
}

.whatsapp-enquiry-button>button:hover {
  background-color: #25D366;
  /* WhatsApp green on hover */
}

.product .rating_wrap {
  display: none;
}

.widget_categories li {
  list-style: none;
  padding: 10px 30px;
  color: white;
  background-color: var(--color-2nd);
  margin-bottom: 10px;
}

.widget_categories li a {

  color: white;

}

.footer_dark {
  background-color: #202325;
  background: url(https://www.armourparts.com/storage/general/footer-bg-2.webp);
  position: relative;
  margin-top: -30px;
  background-position: center;
  background-size: cover;
}

.widget--tags {
  display: none;
}

.dark_skin .logo_dark {
  max-height: 70px;
}

.navbar-brand {
  padding: 1px 0;
}

#navCatContent li a:hover {
  color: #ffffff;
  background-color: var(--color-2nd);
}



/*vehicle*/

.point-font {
  font-size: 13px;
  line-height: normal;
  margin-bottom: 0px;
}

.guardiant-megamenu {
  background-color: gray;
}


















.description {
  padding: 0 2rem 1rem 2rem;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  text-align: center;
  color: #434343;
}

figure {
  position: relative;
  width: 100%;
  height: auto;
}

figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50%;
  object-position: 50%;
}

figure img.img--left {
  -o-object-position: 0%;
  object-position: 0%;
}

figure img.img--right {
  -o-object-position: 100%;
  object-position: 100%;
}

figure figcaption {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/*---
.fig-label {
  position: absolute;
  height: auto;
  width: var(--label-length);
  border-bottom: 3px solid #636363;
  box-shadow: 0px 2px white;
  transition: width 0.8s ease;
}--*/

/* Keyframes for fade-in and pulse animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.fig-label {
  position: absolute;
  height: auto;
  width: var(--label-length);
  /* border-bottom: 2px solid #004085; */
  transition: width 0.8s ease, transform 0.3s ease;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  padding: 5px;
  border-radius: 5px;
}




/* Hover effect for fig-labels */
.fig-label:hover {
  transform: scale(1.05);
  /* Slightly scale the entire fig-label on hover */
  background-size: 110%;
  /* Slight zoom on the background on hover */

}

.custom3 .fig-label p {
  font-size: 1.1em;
  line-height: 1em;
  font-weight: 600;
  color: #004085;
  top: 0;
  margin: 0;
  /* -webkit-text-stroke: 0.4px #ffffff; */
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.fig-label p {
  font-family: inherit;
  font-size: 1.1em;
  line-height: 1em;
  font-weight: 600;
  color: #004085;
  top: -25px;
  margin-top: -30px;
  margin: 0;
  /* -webkit-text-stroke: 0.4px #ffffff; */
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.fig-label p:hover {
  transform: scale(1.1);
  /* Zoom effect on hover */
}

/* Styling for links within fig-labels */
.fig-label p a {
  color: #ffffff;
  /* Set link color contrasting the fire background */
  text-decoration: none;
  /* Remove underline from links */
  display: inline-block;
  /* Ensure the hover effect works correctly */
}

.fig-label p a:hover {
  color: #ffcc00;
  /* Change link color on hover */
}

/* Adding a class to allow for sequential delays */
.fig-label:nth-child(1) {
  animation-delay: 0s;
}

.fig-label:nth-child(2) {
  animation-delay: 0.5s;
}

.fig-label:nth-child(3) {
  animation-delay: 1s;
}

.fig-label:nth-child(4) {
  animation-delay: 1.3s;
}

.fig-label:nth-child(5) {
  animation-delay: 1.8s;
}

.fig-label:nth-child(6) {
  animation-delay: 2.2s;
}

.fig-label:nth-child(7) {
  animation-delay: 2.7s;
}

.fig-label:nth-child(8) {
  animation-delay: 3.2s;
}

.fig-label:nth-child(9) {
  animation-delay: 3.7s;
}

.fig-label:nth-child(10) {
  animation-delay: 4.2s;
}

.fig-label:nth-child(11) {
  animation-delay: 4.7s;
}

.fig-label:nth-child(12) {
  animation-delay: 5.2s;
}

.fig-label--right {
  text-align: right;
}

.fig-label--right::after {
  left: -7px;
}

.fig-label--right .fig-label--line::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 16px;
  transform: rotate(40deg);
  -webkit-transform-origin-x: 20(deg);
  width: 2px;
  height: 60px;
  background-color: var(--color-2nd);
  z-index: 1;
}

.custom-right-small .fig-label--right .fig-label--line::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 7px;
  transform: rotate(35deg);
  -webkit-transform-origin-x: 20(deg);
  width: 2px;
  height: 30px;
  background-color: var(--color-2nd);
  z-index: 1;
}


.custom-right-small .fig-label--line {
  position: static;
  height: 2px;
  background-color: var(--color-2nd);
  margin-top: -21px;
  margin-left: 11px;
}


.fig-label::after {
  position: absolute;
  right: -7px;
  bottom: -8px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--color-2nd);
  content: "";
}

/* Adjust the line-related code for the label */
.fig-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.armourparts.com/line.svg') no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 10;
}

/* Adding or adjusting the line connection styles */
.fig-label--line {
  position: static;
  height: 2px;
  background-color: var(--color-2nd);
  margin-top: -42px;
  margin-right: 31px;

}

.fig-label--right .fig-label--line {
  margin-right: 0px;
}

.fig-label--line::before {
  content: '';
  position: absolute;
  top: -43px;
  right: 7%;
  transform: rotate(320deg);
  -webkit-transform-origin-x: 20(deg);
  width: 2px;
  height: 62px;
  background-color: var(--color-2nd);
  z-index: 1;
}

@media (max-width: 1020px) {
  :root {
    --label-length: 230px;
  }
}

@media (max-width: 890px) {
  :root {
    --label-length: 150px;
  }
}

@media (max-width: 760px) {
  :root {
    --label-length: 130px;
  }

  h1 {
    font-size: 2.8em;
  }
}

@media (max-width: 630px) {
  :root {
    --label-length: 0;
  }

  .fig-label p {
    margin: 0.2em;
  }
}

@media (max-width: 450px) {
  :root {
    --label-length: 0;
  }

  figure {
    width: 300px;
    height: 300px;
  }
}


.pr_action_btn li a {
  background-color: #ffffff;
}

.custom .fig-label--right .fig-label--line::before {
  content: '';
  position: absolute;
  top: -69px;
  left: 27px;
  transform: rotate(40deg);
  -webkit-transform-origin-x: 20(deg);
  width: 2px;
  height: 90px;
  background-color: var(--color-2nd);
  z-index: 1;
}

.custom .fig-label--right .fig-label--line {
  position: static;
  height: 2px;
  background-color: var(--color-2nd);
  margin-top: -65px !important;
  margin-left: 51px !important;
}



.custom2 .fig-label--right .fig-label--line::before {
  content: '';
  content: '';
  position: absolute;
  top: -110px;
  left: 38px;
  transform: rotate(38deg);
  -webkit-transform-origin-x: 20(deg);
  width: 2px;
  height: 140px;
  background-color: var(--color-2nd);
  z-index: 1;
}

.custom2 .fig-label--line {
  position: static;
  height: 2px;
  background-color: var(--color-2nd);
  margin-top: -102px;
  margin-left: 77px;
}



.custom3 .fig-label {
  position: absolute;
  height: auto;
  width: var(--label-length);
  border-bottom: 2px solid #004085;
  transition: width 0.8s ease, transform 0.3s ease;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  padding: 5px;
  border-radius: 5px;
}


.custom-left-medium .fig-label--line::before {
  content: '';
  position: absolute;
  top: -95px;
  right: 37px;
  transform: rotate(320deg);
  -webkit-transform-origin-x: 20(deg);
  width: 2px;
  height: 120px;
  background-color: var(--color-2nd);
  z-index: 1;
}


.custom-left-medium .fig-label--line {
  position: static;
  height: 2px;
  background-color: var(--color-2nd);
  margin-top: -88px;
  margin-right: 71px;
}

/* whatsapp Button
------------------------------------
-----------------------------------*/


.cbh-phone {
  display: block;
  position: fixed;
  left: -20px;
  bottom: -45px;
  visibility: hidden;
  background-color: transparent;
  width: 200px;
  height: 200px;
  cursor: pointer;
  z-index: 999;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -webkit-transition: visibility .5s;
  -moz-transition: visibility .5s;
  -o-transition: visibility .5s;
  transition: visibility .5s
}

.cbh-phone.cbh-show {
  visibility: visible
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
  }
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight
}

.cbh-phone.cbh-static1 {
  opacity: .6
}

.cbh-phone.cbh-hover1 {
  opacity: 1
}

.cbh-ph-circle {
  width: 110px;
  height: 110px;
  top: 40px;
  left: 40px;
  position: absolute;
  background-color: transparent;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid rgba(30, 30, 30, .4);
  opacity: .1;
  -webkit-animation: cbh-circle-anim 1.2s infinite ease-in-out;
  -moz-animation: cbh-circle-anim 1.2s infinite ease-in-out;
  -ms-animation: cbh-circle-anim 1.2s infinite ease-in-out;
  -o-animation: cbh-circle-anim 1.2s infinite ease-in-out;
  animation: cbh-circle-anim 1.2s infinite ease-in-out;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s
}

.cbh-phone.cbh-active .cbh-ph-circle1 {
  -webkit-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
  -moz-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
  -ms-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
  -o-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
  animation: cbh-circle-anim 1.1s infinite ease-in-out !important
}

.cbh-phone.cbh-static .cbh-ph-circle {
  -webkit-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
  -moz-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
  -ms-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
  -o-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
  animation: cbh-circle-anim 2.2s infinite ease-in-out !important
}

.cbh-phone.cbh-hover .cbh-ph-circle {
  border-color: rgba(0, 175, 242, 1);
  opacity: .5
}

.cbh-phone.cbh-green.cbh-hover .cbh-ph-circle {
  border-color: rgba(117, 235, 80, 1);
  opacity: .5
}

.cbh-phone.cbh-green .cbh-ph-circle {
  border-color: rgba(0, 175, 242, 1);
  opacity: .5
}

.cbh-phone.cbh-gray.cbh-hover .cbh-ph-circle {
  border-color: rgba(204, 204, 204, 1);
  opacity: .5
}

.cbh-phone.cbh-gray .cbh-ph-circle {
  border-color: rgba(117, 235, 80, 1);
  opacity: .5
}

.cbh-ph-circle-fill {
  width: 74px;
  height: 74px;
  top: 58px;
  left: 58px;
  position: absolute;
  background-color: #000;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  opacity: .1;
  -webkit-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
  -moz-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
  -ms-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
  -o-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
  animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s
}

.cbh-phone.cbh-active .cbh-ph-circle-fill {
  -webkit-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
  -moz-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
  -ms-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
  -o-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
  animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important
}

.cbh-phone.cbh-static .cbh-ph-circle-fill {
  -webkit-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
  -moz-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
  -ms-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
  -o-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
  animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
  opacity: 0 !important
}

.cbh-phone.cbh-hover .cbh-ph-circle-fill {
  background-color: rgba(0, 175, 242, .5);
  opacity: .75 !important
}

.cbh-phone.cbh-green.cbh-hover .cbh-ph-circle-fill {
  background-color: rgba(117, 235, 80, .5);
  opacity: .75 !important
}

.cbh-phone.cbh-green .cbh-ph-circle-fill {
  background-color: rgba(0, 175, 242, .5);
  opacity: .75 !important
}

.cbh-phone.cbh-gray.cbh-hover .cbh-ph-circle-fill {
  background-color: rgba(204, 204, 204, .5);
  opacity: .75 !important
}

.cbh-phone.cbh-gray .cbh-ph-circle-fill {
  background-color: rgba(117, 235, 80, .5);
  opacity: 1 !important
}

.cbh-ph-img-circle1 {
  width: 50px;
  height: 50px;
  top: 70px;
  left: 70px;
  position: absolute;
  background-image: url(https://www.armourparts.com/storage/product-categories/wht.webp);
  background-size: 40px 40px;
  background-color: rgba(30, 30, 30, .1);
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  opacity: 1;
  -webkit-animation: cbh-circle-img-anim 1s infinite ease-in-out;
  -moz-animation: cbh-circle-img-anim 1s infinite ease-in-out;
  -ms-animation: cbh-circle-img-anim 1s infinite ease-in-out;
  -o-animation: cbh-circle-img-anim 1s infinite ease-in-out;
  animation: cbh-circle-img-anim 1s infinite ease-in-out
}

.cbh-phone.cbh-active .cbh-ph-img-circle1 {
  -webkit-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
  -moz-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
  -ms-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
  -o-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
  animation: cbh-circle-img-anim 1s infinite ease-in-out !important
}

.cbh-phone.cbh-static .cbh-ph-img-circle1 {
  -webkit-animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
  -moz-animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
  -ms-animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
  -o-animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
  animation: cbh-circle-img-anim 0s infinite ease-in-out !important
}

.cbh-phone.cbh-hover .cbh-ph-img-circle1 {
  background-color: rgba(0, 175, 242, 1)
}

.cbh-phone.cbh-green.cbh-hover .cbh-ph-img-circle1:hover {
  background-color: rgba(117, 235, 80, 1)
}

.cbh-phone.cbh-green .cbh-ph-img-circle1 {
  background-color: rgba(0, 175, 242, 1)
}

.cbh-phone.cbh-green .cbh-ph-img-circle1 {
  background-color: rgba(0, 175, 242, 1)
}

.cbh-phone.cbh-gray.cbh-hover .cbh-ph-img-circle1 {
  background-color: rgba(204, 204, 204, 1)
}

.cbh-phone.cbh-gray .cbh-ph-img-circle1 {
  background-color: rgba(117, 235, 80, 1)
}

@-moz-keyframes cbh-circle-anim {
  0% {
    -moz-transform: rotate(0deg) scale(0.5) skew(1deg);
    opacity: .1;
    -moz-opacity: .1;
    -webkit-opacity: .1;
    -o-opacity: .1
  }

  30% {
    -moz-transform: rotate(0deg) scale(.7) skew(1deg);
    opacity: .5;
    -moz-opacity: .5;
    -webkit-opacity: .5;
    -o-opacity: .5
  }

  100% {
    -moz-transform: rotate(0deg) scale(1) skew(1deg);
    opacity: .6;
    -moz-opacity: .6;
    -webkit-opacity: .6;
    -o-opacity: .1
  }
}

@-webkit-keyframes cbh-circle-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
    -webkit-opacity: .1
  }

  30% {
    -webkit-transform: rotate(0deg) scale(.7) skew(1deg);
    -webkit-opacity: .5
  }

  100% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    -webkit-opacity: .1
  }
}

@-o-keyframes cbh-circle-anim {
  0% {
    -o-transform: rotate(0deg) kscale(0.5) skew(1deg);
    -o-opacity: .1
  }

  30% {
    -o-transform: rotate(0deg) scale(.7) skew(1deg);
    -o-opacity: .5
  }

  100% {
    -o-transform: rotate(0deg) scale(1) skew(1deg);
    -o-opacity: .1
  }
}

@keyframes cbh-circle-anim {
  0% {
    transform: rotate(0deg) scale(0.5) skew(1deg);
    opacity: .1
  }

  30% {
    transform: rotate(0deg) scale(.7) skew(1deg);
    opacity: .5
  }

  100% {
    transform: rotate(0deg) scale(1) skew(1deg);
    opacity: .1
  }
}

@-moz-keyframes cbh-circle-fill-anim {
  0% {
    -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2
  }

  50% {
    -moz-transform: rotate(0deg) -moz-scale(1) skew(1deg);
    opacity: .2
  }

  100% {
    -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2
  }
}

@-webkit-keyframes cbh-circle-fill-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2
  }

  50% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    opacity: .2
  }

  100% {
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2
  }
}

@-o-keyframes cbh-circle-fill-anim {
  0% {
    -o-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2
  }

  50% {
    -o-transform: rotate(0deg) scale(1) skew(1deg);
    opacity: .2
  }

  100% {
    -o-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2
  }
}

@keyframes cbh-circle-fill-anim {
  0% {
    transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2
  }

  50% {
    transform: rotate(0deg) scale(1) skew(1deg);
    opacity: .2
  }

  100% {
    transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2
  }
}

@keyframes cbh-circle-img-anim {
  0% {
    transform: rotate(0deg) scale(1) skew(1deg)
  }

  10% {
    transform: rotate(-25deg) scale(1) skew(1deg)
  }

  20% {
    transform: rotate(25deg) scale(1) skew(1deg)
  }

  30% {
    transform: rotate(-25deg) scale(1) skew(1deg)
  }

  40% {
    transform: rotate(25deg) scale(1) skew(1deg)
  }

  100%,
  50% {
    transform: rotate(0deg) scale(1) skew(1deg)
  }
}

@-moz-keyframes cbh-circle-img-anim {
  0% {
    transform: rotate(0deg) scale(1) skew(1deg)
  }

  10% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg)
  }

  20% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg)
  }

  30% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg)
  }

  40% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg)
  }

  100%,
  50% {
    -moz-transform: rotate(0deg) scale(1) skew(1deg)
  }
}

@-webkit-keyframes cbh-circle-img-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg)
  }

  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
  }

  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg)
  }

  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
  }

  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg)
  }

  100%,
  50% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg)
  }
}

@-o-keyframes cbh-circle-img-anim {
  0% {
    -o-transform: rotate(0deg) scale(1) skew(1deg)
  }

  10% {
    -o-transform: rotate(-25deg) scale(1) skew(1deg)
  }

  20% {
    -o-transform: rotate(25deg) scale(1) skew(1deg)
  }

  30% {
    -o-transform: rotate(-25deg) scale(1) skew(1deg)
  }

  40% {
    -o-transform: rotate(25deg) scale(1) skew(1deg)
  }

  100%,
  50% {
    -o-transform: rotate(0deg) scale(1) skew(1deg)
  }
}

.cbh-ph-img-circle1 {}

.cbh-phone.cbh-green .cbh-ph-circle {
  border-color: rgb(0, 242, 164)
}

.cbh-phone.cbh-green .cbh-ph-circle-fill {
  background-color: rgb(0, 242, 164);
}

.cbh-phone.cbh-green .cbh-ph-img-circle1 {
  background-color: rgb(46, 203, 113);
}

.kmacb__manager-border {
  position: absolute;
  width: 75px;
  height: 75px;
  top: 50%;
  left: 50%;
  margin-top: -39.5px;
  margin-left: -39.5px;
  border-radius: 100%;
  border: 2px solid #ffe787;
  -webkit-animation: kmacb__manager-border-anim 1.5s ease-in-out .5s infinite;
  -moz-animation: kmacb__manager-border-anim 1.5s ease-in-out .5s infinite;
  -ms-animation: kmacb__manager-border-anim 1.5s ease-in-out .5s infinite;
  -o-animation: kmacb__manager-border-anim 1.5s ease-in-out .5s infinite;
  animation: kmacb__manager-border-anim 1.5s ease-in-out .5s infinite;
  opacity: .8;
  transform-origin: center;
}

.kmacb__manager-fill {
  background: #52aff7 center bottom no-repeat;
  position: absolute;
  width: 75px;
  height: 75px;
  top: 50%;
  left: 50%;
  margin-top: -37.5px;
  margin-left: -37.5px;
  border-radius: 100%;
  opacity: .5;
  -webkit-animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
  -moz-animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
  -ms-animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
  -o-animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
  animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
  transform-origin: center;
}

.kmacb__manager-circle {
  background: #52aff7;
  position: absolute;
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  margin-top: -60px;
  margin-left: -60px;
  border-radius: 100%;
}

label {
  color: #ffffff;
}


.blinking-light {
  position: absolute;
  transform: translateX(-50%);
  /* Center the light */
  width: 30px;
  /* Width of the light */
  height: 20px;
  /* Height of the light */
  border-radius: 50%;
  /* Make it circular */
  background: radial-gradient(circle, white 40%, rgba(255, 255, 255, 0) 70%);
  /* White gradient light effect */
  box-shadow: 0 0 30px 10px white;
  /* Stronger white glow */

}

.blinking-light-red {
  position: absolute;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe000d1 20%, rgba(255, 0, 0, 0) 70%);
  box-shadow: 0 0 30px 10px #ffb600d1;
  animation: blink 1s infinite;
}



@keyframes blink {

  0%,
  100% {
    opacity: 0;
    /* Light is off */
  }

  50% {
    opacity: 1;
    /* Light is on */
  }
}




.main-text {
  font-weight: 900;
  left: 0;
  right: 0;
  font-size: xxx-large;
  text-align: center;
  top: 14%;
  position: absolute;
  color: black;

  /* Animation for the main text */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-in-out forwards;
}

.main-text span {
  color: red !important;

  /* Animation for the highlighted text */
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: highlightText 1.5s ease-in-out forwards 1s;
  /* Delayed start for the span text */
}

/* Animation for the main text */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation for the highlighted span text */
@keyframes highlightText {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    color: red;
  }
}

/* ===================================================
   GUARDIANT GOOGLE REVIEW & CATEGORIES CUSTOM CSS
=================================================== */

/* Google Review Section */
.guardiant-review-banner {
  background-color: #f8f9fa;
}

.bg-dark-navy {
  background: linear-gradient(135deg, #051A35 0%, #0A2540 50%, #06152B 100%) !important;
}

.rounded-20 {
  border-radius: 20px !important;
}

.rounded-16 {
  border-radius: 16px !important;
}

.rounded-12 {
  border-radius: 12px !important;
}

.accent-top-bar {
  height: 4px;
  background: linear-gradient(90deg, #E00925 0%, #FF4D63 50%, #E00925 100%);
}

.bg-danger-gradient {
  background: linear-gradient(135deg, #E00925 0%, #B00018 100%);
}

.tracking-wide {
  letter-spacing: 1px;
}

.text-muted-light {
  color: #a0aec0 !important;
}

.heading-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.25;
}

.text-gradient-google {
  background: linear-gradient(135deg, #4285F4 0%, #EA4335 50%, #FBBC05 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-white-05 {
  background: rgba(255, 255, 255, 0.05);
}

.border-white-10 {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-google-review {
  background-color: #ffffff;
  color: #1a202c;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-google-review:hover {
  background-color: #f7fafc;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25) !important;
}

.qr-container-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-container-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.qr-badge {
  top: -12px;
  right: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35) !important;
}

.qr-img {
  transition: transform 0.3s ease;
}

.qr-container-card:hover .qr-img {
  transform: scale(1.03);
}

/* Category Section & Cards */
.guardiant-cat-section {
  background: #031c3a;
  padding: 70px 0;
}

.cat-badge-pill {
  display: inline-block;
  background: rgba(224, 9, 37, 0.12);
  border: 1px solid rgba(224, 9, 37, 0.3);
  color: #FF4D63;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
}

.cat-section-title {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.text-danger-gradient {
  background: linear-gradient(135deg, #FF324D 0%, #E00925 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cat-section-subtitle {
  font-size: 14.5px;
  color: #8A99AD !important;
  max-width: 580px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.cat-header-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #E00925 0%, transparent 100%);
  border-radius: 2px;
}

/* Category Card with Gradient Stroke & Drop Shadow */
.guardiant-cat-card {
  position: relative;
  border-radius: 18px;
  padding: 24px 14px 18px;
  height: 100%;
  overflow: hidden;
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(10px);
  border: 1.5px solid transparent;
  background:
    linear-gradient(160deg, rgba(16, 31, 54, 0.85), rgba(7, 16, 29, 0.92)) padding-box,
    linear-gradient(135deg, rgba(224, 9, 37, 0.45), rgba(5, 40, 83, 0.6), rgba(255, 255, 255, 0.12)) border-box;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cat-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  text-decoration: none !important;
}

.cat-icon-wrap {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.38s ease;
  border: 2px solid transparent;
  background:
    linear-gradient(145deg, #0e1e35, #081222) padding-box,
    linear-gradient(135deg, #FF324D 0%, #052853 50%, #FF324D 100%) border-box;
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(224, 9, 37, 0.25),
    inset 0 2px 5px rgba(255, 255, 255, 0.12);
}

.cat-icon-wrap img {
  max-width: 44px;
  max-height: 44px;
  object-fit: contain;
  filter: invert(1) brightness(1.25) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cat-card-title {
  color: #F1F5F9;
  font-size: 11.5px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.6px;
  margin: 0;
  line-height: 1.35;
  padding: 8px 10px;
  border-radius: 10px;
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.cat-hover-arrow {
  color: #FF324D;
  font-size: 16px;
  opacity: 0;
  margin-top: 6px;
  transform: translateY(4px);
  transition: all 0.3s ease;
}

.guardiant-cat-card:hover {
  transform: translateY(-8px);
  border: 1.5px solid transparent;
  background:
    linear-gradient(160deg, rgba(20, 40, 70, 0.95), rgba(10, 22, 40, 0.98)) padding-box,
    linear-gradient(135deg, #FF324D 0%, #4285F4 50%, #E00925 100%) border-box;
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.55),
    0 0 25px rgba(224, 9, 37, 0.35);
}

.guardiant-cat-card:hover .cat-icon-wrap {
  transform: scale(1.08);
  background:
    linear-gradient(145deg, rgba(224, 9, 37, 0.25), rgba(5, 40, 83, 0.4)) padding-box,
    linear-gradient(135deg, #FF324D, #FFFFFF, #E00925) border-box;
  box-shadow:
    0 12px 28px rgba(224, 9, 37, 0.45),
    0 0 22px rgba(255, 50, 77, 0.35);
}

.guardiant-cat-card:hover .cat-icon-wrap img {
  transform: scale(1.14) rotate(2deg);
}

.guardiant-cat-card:hover .cat-card-title {
  color: #ffffff;
  background: rgba(224, 9, 37, 0.15);
  border-color: rgba(255, 77, 99, 0.35);
  box-shadow: 0 6px 16px rgba(224, 9, 37, 0.2);
}

.guardiant-cat-card:hover .cat-hover-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   WHY CHOOSE US & ENQUIRE SECTION — LIGHT GRAY THEME
=================================================== */
.guardiant-why-choose-us {
  background: #f4f5f7;
  padding: 85px 0;
}

.guardiant-why-choose-us .z-index-2 {
  z-index: 2;
}

/* Subtle Glow Accents (toned down for light bg) */
.why-glow-accent {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.06;
}

.glow-top-left {
  top: -120px;
  left: -120px;
  background: #E00925;
}

.glow-bottom-right {
  bottom: -120px;
  right: -120px;
  background: #4285F4;
}

/* Badge */
.why-badge-pill {
  display: inline-block;
  background: rgba(224, 9, 37, 0.08);
  border: 1px solid rgba(224, 9, 37, 0.25);
  color: #c0001f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 20px;
}

/* Section Title */
.why-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: #1a1f2e;
}

.why-description {
  font-size: 14.5px;
  line-height: 1.7;
  color: #4a5568 !important;
}

/* Metric Cards — white cards on light gray bg */
.why-metric-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #ffffff;
  border: 1.5px solid rgba(224, 9, 37, 0.15);
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.07),
    0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 9, 37, 0.4);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.1),
    0 0 0 3px rgba(224, 9, 37, 0.06);
}

.metric-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(224, 9, 37, 0.08);
  border: 1px solid rgba(224, 9, 37, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-icon-wrap img {
  max-width: 26px;
  max-height: 26px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(12%) sepia(95%) saturate(4000%) hue-rotate(344deg);
}

.metric-count {
  font-size: 20px;
  font-weight: 800;
  color: #1a1f2e;
  line-height: 1;
  margin-bottom: 3px;
}

.metric-title {
  font-size: 11.5px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Enquire Card — white card with red top accent */
.why-enquire-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #e8eaf0;
  border-radius: 20px;
  padding: 36px 30px;
  overflow: hidden;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.card-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E00925 0%, #FF4D63 50%, #E00925 100%);
}

.enquire-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1f2e;
}

.enquire-card-subtitle {
  font-size: 13.5px;
  line-height: 1.5;
  color: #64748b !important;
}

.badge-outline-danger {
  border: 1px solid rgba(224, 9, 37, 0.4);
  color: #c0001f;
  padding: 5px 12px;
  background: rgba(224, 9, 37, 0.06);
  border-radius: 20px;
}

/* Form Styles — light inputs */
.why-form-label {
  font-size: 12px;
  color: #374151;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.why-form-input {
  background: #f8f9fb !important;
  border: 1.5px solid #dde1ea !important;
  border-radius: 10px !important;
  color: #1a1f2e !important;
  padding: 12px 14px !important;
  font-size: 13.5px !important;
  outline: none !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
  width: 100%;
  box-shadow: none !important;
}

.why-form-input:focus {
  border-color: #E00925 !important;
  box-shadow: 0 0 0 3px rgba(224, 9, 37, 0.1) !important;
  background: #ffffff !important;
}

.why-form-input::placeholder {
  color: #9ca3af !important;
}

/* Red Glow Submit Button */
.btn-danger-glow {
  background: linear-gradient(135deg, #E00925 0%, #B00018 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(224, 9, 37, 0.3);
  transition: all 0.3s ease;
  width: 100%;
  padding: 14px;
  font-weight: 700;
  cursor: pointer;
}

.btn-danger-glow:hover {
  background: linear-gradient(135deg, #FF1744 0%, #C62828 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(224, 9, 37, 0.45);
}

/* Text helper */
.text-muted-light {
  color: #4a5568 !important;
}