 
 
/* Guarantees Grid */
.guarantees-grid {
  display: flex;
  /* flex-wrap: wrap; */
  overflow-x: auto;
  gap: 30px;
  max-width: 1100px;
  margin: 70px auto 0;
  scroll-behavior: smooth;
  position: relative;
  padding-bottom: 70px;
}

/* Hide scrollbar for cleaner look */
.guarantees-grid {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.guarantees-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Guarantee Card */
.guarantee-card {
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 12px;
  min-width: 165px;
  max-width: 195px;
  flex-shrink: 0;
}

.guarantee-card:hover {
  transform: scale(1.03);
 
}
.guarantee-title{
font-weight: 500;
font-size: 15px;
line-height: 100%;
color: #464860;
text-align: center;
vertical-align: middle;
padding-bottom: 12px;

}
/* Guarantee Icon */
.guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-bottom: 29px;
}

/* Guarantee Description */
.guarantee-description {

  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  text-align: center;
  color: #60738A;
  margin: 0;
}

/* Guarantees Navigation Buttons */
.guarantees-grid-container {
  position: relative;
}

.guarantees-nav-btn {
  position: absolute;
  width: 45px;
  height: 45px;
  background: white;
  border: 1px solid #0654E6;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.guarantees-nav-btn.prev {
  left: 45%;
  bottom: 0;
}

.guarantees-nav-btn.next {
  left: 55%;
  bottom: 0;
}

.guarantees-nav-btn::before {
  content: '';
  width: 13px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(16%) sepia(93%) saturate(5859%) hue-rotate(219deg) brightness(97%) contrast(95%);
}

.guarantees-nav-btn.prev::before {
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5 5L0.5 5M0.5 5L5 9.5M0.5 5L5 0.5' stroke='%23A1B8D5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.guarantees-nav-btn.next::before {
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 5L12.5 5M12.5 5L8 0.5M12.5 5L8 9.5' stroke='%235F728B' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.guarantees-nav-btn:hover {
  border-color: #0654E6;
  background: white;
}

.guarantees-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #D2E3F8;
}

/* Hide buttons by default, show only when there are more than 5 items */
.guarantees-nav-btn {
  display: none;
}

.guarantees-grid-container.has-navigation .guarantees-nav-btn {
  display: flex;
}

/* Guarantees Footer */
.guarantees-footer {
  margin-top: 60px;
  text-align: center;
}

.guarantees-footer p {
  
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #5F728B;
}

/* .guarantees-gradient-overlay{
  width: 100%;
max-width: 768px;
margin: 0 auto;
} */

/* Responsive Design */
@media (max-width: 768px) {
  .guarantees-section {
    padding: 60px 20px;
  }

  .guarantees-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 60px;
  }

  .guarantee-card {
    padding: 25px 20px;
  }

  
  .guarantee-description {
    font-size: 13px;
  }

  .guarantees-footer {
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
  .guarantees-nav-btn.next {
    
    left: 57%;
  }
  .guarantees-nav-btn.prev {
    
    left: 33%;
  }
  .guarantees-section {
    padding: 40px 16px;
  }

  .guarantees-grid {
    flex-wrap: nowrap;
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    margin-top: 40px;
  }

  .guarantee-card {
 padding: 20px 16px;
        width: 420px;
        max-width: 450px;
        flex: 0 0 250px;
  }

/* Webkit browsers (Chrome, Safari, Edge) */
 .guarantees-grid::-webkit-scrollbar {
  width: 6px;                  /* Very thin – matches your image */
  height: 6px;
}

 .guarantees-grid::-webkit-scrollbar-track {
 background: #E9F4FF;     /* Fully transparent track */
  border-radius: 10px;
}

 .guarantees-grid::-webkit-scrollbar-thumb {
  background: #0554E6;        /* Very light blue-gray when inactive */
  border-radius: 10px;
  transition: background 0.2s ease;
}

 .guarantees-grid::-webkit-scrollbar-thumb:hover,
 .guarantees-grid::-webkit-scrollbar-thumb:active {
  background: #0554E6         /* Bright blue when hovering or scrolling (exactly like your image) */
}

/* Optional: make corner fully clean */
 .guarantees-grid::-webkit-scrollbar-corner {
  background: #E9F4FF;
}

  .guarantee-description {
    font-size: 12px;
  }

  .guarantees-footer {
    margin-top: 30px;
  }

  .guarantees-footer p {
    font-size: 13px;
  }
}
